Files
integration/Source/Integration/Integration.Build.cs

47 lines
1.1 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class Integration : ModuleRules
{
public Integration(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
bUseUnity = false;
PublicDependencyModuleNames.AddRange(new string[] {
"Core",
"CoreUObject",
"Engine",
"InputCore",
"SlateCore",
"Sockets",
"Networking",
"EnhancedInput",
"UMG",
"CommonUI",
"RenderCore"
});
PrivateDependencyModuleNames.AddRange(new string[] {
"KismetCompiler",
"UnrealEd",
"Kismet",
"KismetWidgets",
"BlueprintGraph",
"UMG",
"UMGEditor",
});
// 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
AddEngineThirdPartyPrivateStaticDependencies(Target, "OpenSSL");
}
}