2019-12-26 14:45:42 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-06-08 17:15:34 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class PhysicsCore: ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public PhysicsCore(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PublicIncludePaths.Add("Runtime/PhysicsCore/Public");
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
2019-08-02 09:01:58 -04:00
|
|
|
"CoreUObject"
|
2019-06-08 17:15:34 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
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");
|
|
|
|
|
}
|
2019-10-02 17:27:26 -04:00
|
|
|
|
|
|
|
|
if(Target.bCompileAPEX)
|
|
|
|
|
{
|
|
|
|
|
PublicDependencyModuleNames.Add("APEX");
|
|
|
|
|
}
|
2019-06-08 17:15:34 -04:00
|
|
|
}
|
|
|
|
|
}
|