ComboInput/Source/ComboInputEditor/ComboInputEditor.build.cs
2023-09-18 00:29:41 -04:00

39 lines
724 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",
"Projects"
}
);
if (Target.bBuildEditor)
{
PrivateDependencyModuleNames.Add("UnrealEd");
}
}
}