28 lines
1.2 KiB
C#
28 lines
1.2 KiB
C#
using UnrealBuildTool;
|
|
|
|
public class Cardinal : ModuleRules
|
|
{
|
|
public Cardinal(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "AdvancedSessions", "OnlineSubsystem", "OnlineSubsystemUtils", "Networking", "Sockets", "OnlineSubsystemSteam", "OnlineSubsystemNull", "MoviePlayer", "DeveloperSettings" });
|
|
|
|
PrivateDependencyModuleNames.AddRange(new string[] { "OnlineSubsystem", "Sockets", "Networking", "OnlineSubsystemSteam", "OnlineSubsystemNull" });
|
|
|
|
//For 4.26
|
|
PrivatePCHHeaderFile = "Cardinal.h";
|
|
bLegacyPublicIncludePaths = true;
|
|
|
|
// Uncomment if you are using Slate UI
|
|
// PrivateDependencyModuleNames.AddRange(new string[] { "Slate", "SlateCore" });
|
|
|
|
// Uncomment if you are using online features
|
|
//PrivateDependencyModuleNames.Add("OnlineSubsystem");
|
|
//if ((Target.Platform == UnrealTargetPlatform.Win32) || (Target.Platform == UnrealTargetPlatform.Win64))
|
|
//{
|
|
// if (UEBuildConfiguration.bCompileSteamOSS == true)
|
|
// {
|
|
// DynamicallyLoadedModuleNames.Add("OnlineSubsystemSteam");
|
|
// }
|
|
// }
|
|
}
|
|
}
|