You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-223488 #rb jordi.rovira #tests Editor #rnx #virtualized [CL 36035608 by alexei lebedev in ue5-main branch]
52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class CustomizableObject : ModuleRules
|
|
{
|
|
public CustomizableObject(ReadOnlyTargetRules TargetRules) : base(TargetRules)
|
|
{
|
|
ShortName = "MuCO";
|
|
|
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
|
|
|
bAllowConfidentialPlatformDefines = true;
|
|
//bUseUnity = false;
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(new string[] {
|
|
"InputCore",
|
|
"SlateCore",
|
|
"CoreUObject",
|
|
"RenderCore",
|
|
"RHI",
|
|
"AppFramework",
|
|
"Projects",
|
|
"ApplicationCore",
|
|
"ClothingSystemRuntimeInterface",
|
|
//"ClothingSystemEditor",
|
|
"UMG",
|
|
"ImageCore",
|
|
});
|
|
|
|
PublicDependencyModuleNames.AddRange(new string[] {
|
|
"Slate",
|
|
"Core",
|
|
"Engine",
|
|
"SkeletalMerging",
|
|
"ClothingSystemRuntimeCommon",
|
|
"GameplayTags",
|
|
"MutableRuntime",
|
|
"AnimGraphRuntime",
|
|
});
|
|
|
|
if (TargetRules.bBuildEditor == true)
|
|
{
|
|
PublicDependencyModuleNames.Add("UnrealEd"); // @todo api: Only public because of WITH_EDITOR
|
|
PublicDependencyModuleNames.Add("DerivedDataCache");
|
|
PublicDependencyModuleNames.Add("EditorStyle");
|
|
PublicDependencyModuleNames.Add("MessageLog");
|
|
}
|
|
}
|
|
}
|