Files
TerracottaWarriors/Plugins/ObjectPool/Source/OBJPoolDeveloper/OBJPoolDeveloper.Build.cs

37 lines
701 B
C#
Raw Normal View History

2025-07-14 22:24:27 +08:00
using UnrealBuildTool;
public class OBJPoolDeveloper : ModuleRules {
public OBJPoolDeveloper(ReadOnlyTargetRules Target) : base(Target) {
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
IWYUSupport = IWYUSupport.None;
//
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"Slate",
"Engine",
"OBJPool",
"SlateCore",
"CoreUObject"
}
);
//
PrivateDependencyModuleNames.AddRange(
new string[] {
"Projects",
"KismetCompiler"
}
);
//
if (Target.bBuildEditor==true) {
PrivateDependencyModuleNames.AddRange(
new string[] {
"UnrealEd",
"LevelEditor",
"PropertyEditor",
"BlueprintGraph"
}
);
}
}
}