38 lines
708 B
C#
38 lines
708 B
C#
using UnrealBuildTool;
|
|
|
|
public class ComboInputEditor : ModuleRules
|
|
{
|
|
public ComboInputEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
|
bLegacyPublicIncludePaths = false;
|
|
ShadowVariableWarningLevel = WarningLevel.Error;
|
|
|
|
PrecompileForTargets = PrecompileTargetsType.None;
|
|
bPrecompile = false;
|
|
bUsePrecompiled = false;
|
|
|
|
PublicDependencyModuleNames.AddRange
|
|
(new string[]
|
|
{
|
|
"ComboInput",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange
|
|
(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"AssetTools",
|
|
"SlateCore"
|
|
}
|
|
);
|
|
|
|
if (Target.bBuildEditor)
|
|
{
|
|
PrivateDependencyModuleNames.Add("UnrealEd");
|
|
}
|
|
}
|
|
} |