You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
30 lines
698 B
C#
30 lines
698 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class PhysicsCore: ModuleRules
|
|
{
|
|
public PhysicsCore(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicIncludePaths.Add("Runtime/PhysicsCore/Public");
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Chaos"
|
|
}
|
|
);
|
|
|
|
SetupModulePhysicsSupport(Target);
|
|
|
|
if(Target.bCompilePhysX)
|
|
{
|
|
// Not ideal but as this module publicly exposes PhysX types
|
|
// to other modules when PhysX is enabled it requires that its
|
|
// public files have access to PhysX includes
|
|
PublicDependencyModuleNames.Add("PhysX");
|
|
}
|
|
}
|
|
}
|