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
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2020-08-11 01:36:57 -04:00
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"DeveloperSettings"
|
|
|
|
|
}
|
|
|
|
|
);
|
2019-06-08 17:15:34 -04:00
|
|
|
|
2020-08-11 01:36:57 -04:00
|
|
|
SetupModulePhysicsSupport(Target);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// SetupModulePhysicsSupport adds a dependency on PhysicsCore, but we are PhysicsCore!
|
|
|
|
|
PublicIncludePathModuleNames.Remove("PhysicsCore");
|
|
|
|
|
PublicDependencyModuleNames.Remove("PhysicsCore");
|
|
|
|
|
|
2020-04-01 17:09:25 -04:00
|
|
|
PrivateDefinitions.Add("CHAOS_INCLUDE_LEVEL_1=1");
|
2019-06-08 17:15:34 -04:00
|
|
|
}
|
|
|
|
|
}
|