Files
UnrealEngine/Engine/Plugins/Mutable/Source/MutableRuntime/MutableRuntime.Build.cs
2025-05-18 13:04:45 +08:00

34 lines
612 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using System.IO;
namespace UnrealBuildTool.Rules
{
public class MutableRuntime : ModuleRules
{
public MutableRuntime(ReadOnlyTargetRules Target) : base(Target)
{
ShortName = "MuR";
DefaultBuildSettings = BuildSettingsVersion.V2;
IWYUSupport = IWYUSupport.KeepAsIsForNow;
//bUseUnity = false;
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject",
"Engine",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"GeometryCore",
"TraceLog"
}
);
}
}
}