You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
22 lines
684 B
C#
22 lines
684 B
C#
// Copyright 1998-2013 Epic Games, Inc. All Rights Reserved.
|
|
// 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/";
|
|
|
|
if (Target.Platform == UnrealTargetPlatform.Linux)
|
|
{
|
|
PublicLibraryPaths.Add(LNDLibPath + "Linux/" + Target.Architecture);
|
|
PublicIncludePaths.Add(LNDPath + "include/");
|
|
PublicAdditionalLibraries.Add("LND");
|
|
}
|
|
}
|
|
}
|