Files
UnrealEngineUWP/Engine/Source/Developer/DesktopPlatform/DesktopPlatform.Build.cs
Jamie Dale 2ce89a4123 Fixed SlateFileDialogs dependency on DesktopPlatform
#codereview Dmitry.Rekman

[CL 2659332 by Jamie Dale in Main branch]
2015-08-18 11:12:46 -04:00

37 lines
735 B
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class DesktopPlatform : ModuleRules
{
public DesktopPlatform(TargetInfo Target)
{
PrivateIncludePaths.Add("Developer/DesktopPlatform/Private");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"Json",
}
);
if (Target.Platform == UnrealTargetPlatform.Linux)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"SlateFileDialogs",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"SlateFileDialogs",
}
);
AddThirdPartyPrivateStaticDependencies(Target, "SDL2");
//AddThirdPartyPrivateStaticDependencies(Target, "LinuxNativeDialogs");
}
}
}