You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
34 lines
630 B
C#
34 lines
630 B
C#
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
using UnrealBuildTool;
|
||
|
|
|
||
|
|
namespace UnrealBuildTool.Rules
|
||
|
|
{
|
||
|
|
public class StructUtilsTestSuite : ModuleRules
|
||
|
|
{
|
||
|
|
public StructUtilsTestSuite(ReadOnlyTargetRules Target) : base(Target)
|
||
|
|
{
|
||
|
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
||
|
|
|
||
|
|
PublicIncludePaths.AddRange(
|
||
|
|
new string[] {
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
PublicDependencyModuleNames.AddRange(
|
||
|
|
new string[] {
|
||
|
|
"Core",
|
||
|
|
"CoreUObject",
|
||
|
|
"Engine",
|
||
|
|
"AIModule",
|
||
|
|
"AITestSuite",
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
if (Target.bBuildEditor == true)
|
||
|
|
{
|
||
|
|
PrivateDependencyModuleNames.Add("UnrealEd");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|