2019-12-26 15:32:37 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class DesktopPlatform : ModuleRules
|
|
|
|
|
{
|
2017-01-30 16:52:08 -05:00
|
|
|
public DesktopPlatform(ReadOnlyTargetRules Target) : base(Target)
|
2014-03-14 14:13:41 -04:00
|
|
|
{
|
|
|
|
|
PrivateIncludePaths.Add("Developer/DesktopPlatform/Private");
|
|
|
|
|
|
2014-09-25 18:03:04 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Core",
|
2017-08-31 12:08:38 -04:00
|
|
|
"ApplicationCore",
|
2014-09-25 18:03:04 -04:00
|
|
|
"Json",
|
|
|
|
|
}
|
|
|
|
|
);
|
2014-07-08 00:06:17 -04:00
|
|
|
|
2019-09-14 09:45:25 -04:00
|
|
|
if (Target.IsInPlatformGroup(UnrealPlatformGroup.Linux))
|
2014-07-08 00:06:17 -04:00
|
|
|
{
|
2015-08-18 11:12:46 -04:00
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"SlateFileDialogs",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"SlateFileDialogs",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2016-02-03 15:40:40 -05:00
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "SDL2");
|
2014-07-08 00:06:17 -04:00
|
|
|
}
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
}
|