You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
48 lines
1.3 KiB
C#
48 lines
1.3 KiB
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class GeometryCollectionEngine : ModuleRules
|
|
{
|
|
public GeometryCollectionEngine(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePaths.Add("Runtime/Experimental/GeometryCollectionEngine/Private");
|
|
PublicIncludePaths.Add(ModuleDirectory + "/Public");
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"RenderCore",
|
|
"RHI",
|
|
"Chaos",
|
|
"ChaosSolvers",
|
|
"PhysX",
|
|
"APEX",
|
|
"FieldSystemCore",
|
|
"FieldSystemEngine",
|
|
"GeometryCollectionCore",
|
|
"GeometryCollectionSimulationCore",
|
|
"ChaosSolverEngine",
|
|
"IntelISPC",
|
|
"PhysicsSQ"
|
|
}
|
|
);
|
|
|
|
if (!Target.bBuildRequiresCookedData)
|
|
{
|
|
DynamicallyLoadedModuleNames.AddRange(new string[] { "DerivedDataCache" });
|
|
}
|
|
|
|
PrivateIncludePathModuleNames.Add("DerivedDataCache");
|
|
|
|
if(Target.bBuildEditor)
|
|
{
|
|
PrivateDependencyModuleNames.Add("UnrealEd");
|
|
}
|
|
}
|
|
}
|
|
}
|