31 lines
867 B
C#
31 lines
867 B
C#
|
|
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
||
|
|
|
||
|
|
using UnrealBuildTool;
|
||
|
|
|
||
|
|
public class SUDSTest : ModuleRules
|
||
|
|
{
|
||
|
|
public SUDSTest(ReadOnlyTargetRules Target) : base(Target)
|
||
|
|
{
|
||
|
|
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
||
|
|
|
||
|
|
PrivateDependencyModuleNames.AddRange(
|
||
|
|
new string[]
|
||
|
|
{
|
||
|
|
"Core",
|
||
|
|
"CoreUObject",
|
||
|
|
"Engine",
|
||
|
|
"SUDS",
|
||
|
|
"SUDSEditor"
|
||
|
|
}
|
||
|
|
);
|
||
|
|
|
||
|
|
// Uncomment if you are using Slate UI
|
||
|
|
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
|
||
|
|
|
||
|
|
// Uncomment if you are using online features
|
||
|
|
// PrivateDependencyModuleNames.Add("OnlineSubsystem");
|
||
|
|
|
||
|
|
// To include OnlineSubsystemSteam, add it to the plugins section in your uproject file with the Enabled attribute set to true
|
||
|
|
}
|
||
|
|
}
|