DRG-Femboy-Voice/Source/FSDEngine/FSDEngine.Build.cs
2025-04-15 12:39:31 -07:00

18 lines
527 B
C#
Executable file

using UnrealBuildTool;
public class FSDEngine : ModuleRules {
public FSDEngine(ReadOnlyTargetRules Target) : base(Target) {
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
bLegacyPublicIncludePaths = false;
ShadowVariableWarningLevel = WarningLevel.Warning;
PublicDependencyModuleNames.AddRange(new string[] {
"Chaos",
"Core",
"CoreUObject",
"DeveloperSettings",
"Engine",
"PhysicsCore",
});
}
}