2014-12-07 19:09:38 -05:00
|
|
|
|
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
2014-08-05 21:12:49 -04:00
|
|
|
|
// Not really Epic, but Freenode #ue4linux's RushPL and amigo
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
|
|
public class LinuxNativeDialogs : ModuleRules
|
|
|
|
|
|
{
|
|
|
|
|
|
public LinuxNativeDialogs(TargetInfo Target)
|
|
|
|
|
|
{
|
|
|
|
|
|
Type = ModuleType.External;
|
|
|
|
|
|
|
|
|
|
|
|
string LNDPath = UEBuildConfiguration.UEThirdPartySourceDirectory + "LinuxNativeDialogs/UELinuxNativeDialogs/";
|
|
|
|
|
|
string LNDLibPath = LNDPath + "lib/";
|
2014-09-29 19:22:37 -04:00
|
|
|
|
|
|
|
|
|
|
Definitions.Add("WITH_LINUX_NATIVE_DIALOGS=1");
|
2014-08-05 21:12:49 -04:00
|
|
|
|
|
|
|
|
|
|
if (Target.Platform == UnrealTargetPlatform.Linux)
|
|
|
|
|
|
{
|
2015-04-17 15:45:42 -04:00
|
|
|
|
PublicLibraryPaths.Add(LNDLibPath + "Linux/" + Target.Architecture);
|
2014-08-05 21:12:49 -04:00
|
|
|
|
PublicIncludePaths.Add(LNDPath + "include/");
|
2014-09-10 15:03:57 -04:00
|
|
|
|
PublicAdditionalLibraries.Add("LND");
|
2014-08-05 21:12:49 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|