You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
+ replaced all methods Describe by LexToString + unified naming from "*ID" to *Handle #preflight 61e85d121000e8c59a78c886 #rb mikko.mononen #ROBOMERGE-AUTHOR: yoan.stamant #ROBOMERGE-SOURCE: CL 18662203 in //UE5/Release-5.0/... via CL 18662234 via CL 18662264 #ROBOMERGE-BOT: UE5 (Release-Engine-Test -> Main) (v900-18638592) [CL 18662291 by yoan stamant in ue5-main branch]
34 lines
654 B
C#
34 lines
654 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class SmartObjectsTestSuite : ModuleRules
|
|
{
|
|
public SmartObjectsTestSuite(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicIncludePaths.AddRange(
|
|
new string[] {
|
|
}
|
|
);
|
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
new[] {
|
|
"AITestSuite",
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"GameplayTags",
|
|
"MassEntity",
|
|
"SmartObjectsModule",
|
|
"StructUtils"
|
|
}
|
|
);
|
|
|
|
if (Target.bBuildEditor)
|
|
{
|
|
PrivateDependencyModuleNames.Add("EditorFramework");
|
|
PrivateDependencyModuleNames.Add("UnrealEd");
|
|
}
|
|
}
|
|
}
|
|
} |