You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
52 lines
1.3 KiB
C#
52 lines
1.3 KiB
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using System;
|
|
using System.IO;
|
|
using UnrealBuildTool;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class RigLogicModule : ModuleRules
|
|
{
|
|
private string ModulePath
|
|
{
|
|
get { return ModuleDirectory; }
|
|
}
|
|
|
|
public RigLogicModule(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
if (Target.LinkType != TargetLinkType.Monolithic)
|
|
{
|
|
PublicDefinitions.Add("RL_SHARED=1");
|
|
}
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"ControlRig",
|
|
"RigLogicLib",
|
|
"RigVM",
|
|
"Projects"
|
|
}
|
|
);
|
|
|
|
if (Target.Type == TargetType.Editor)
|
|
{
|
|
PublicDependencyModuleNames.Add("UnrealEd");
|
|
PublicDependencyModuleNames.Add("EditorFramework");
|
|
PublicDependencyModuleNames.Add("MessageLog");
|
|
}
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"AnimationCore"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|