2021-09-28 13:33:17 -04:00
|
|
|
// 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",
|
2022-01-19 14:16:16 -05:00
|
|
|
"Engine",
|
2021-09-28 13:33:17 -04:00
|
|
|
"GameplayTags",
|
2022-01-19 14:16:16 -05:00
|
|
|
"MassEntity",
|
2021-09-28 13:33:17 -04:00
|
|
|
"SmartObjectsModule",
|
2022-11-18 00:03:06 -05:00
|
|
|
"StructUtils",
|
|
|
|
|
"WorldConditions"
|
2021-09-28 13:33:17 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
if (Target.bBuildEditor)
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.Add("EditorFramework");
|
|
|
|
|
PrivateDependencyModuleNames.Add("UnrealEd");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|