Files
UnrealEngineUWP/Engine/Source/Developer/DesktopPlatform/DesktopPlatform.Build.cs
Dmitry Rekman eae52c65aa Linux: switch from LinuxNativeDialogs to SlateFileDialogs.
- Still experimental at this point.

#codereview Nick.Atamas, Matthew.Lewis, Josh.Adams

[CL 2587983 by Dmitry Rekman in Main branch]
2015-06-15 18:14:07 -04:00

25 lines
532 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)
{
AddThirdPartyPrivateStaticDependencies(Target, "SDL2");
AddThirdPartyPrivateStaticDependencies(Target, "SlateFileDialogs");
}
}
}