29 lines
661 B
C#
29 lines
661 B
C#
|
|
using UnrealBuildTool;
|
|||
|
|
|
|||
|
|
public class DTFluxProjectSettings : ModuleRules
|
|||
|
|
{
|
|||
|
|
public DTFluxProjectSettings(ReadOnlyTargetRules Target) : base(Target)
|
|||
|
|
{
|
|||
|
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
|||
|
|
|
|||
|
|
PublicDependencyModuleNames.AddRange(
|
|||
|
|
new string[]
|
|||
|
|
{
|
|||
|
|
"Core",
|
|||
|
|
}
|
|||
|
|
);
|
|||
|
|
|
|||
|
|
PrivateDependencyModuleNames.AddRange(
|
|||
|
|
new string[]
|
|||
|
|
{
|
|||
|
|
"CoreUObject",
|
|||
|
|
"Engine",
|
|||
|
|
"Slate",
|
|||
|
|
"SlateCore",
|
|||
|
|
"DeveloperSettings",
|
|||
|
|
"DTFluxCore"
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
);
|
|||
|
|
}
|
|||
|
|
}
|