Files
UnrealEngineUWP/Engine/Source/Developer/SlateFileDialogs/SlateFileDialogs.Build.cs

29 lines
680 B
C#
Raw Normal View History

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class SlateFileDialogs : ModuleRules
{
public SlateFileDialogs(TargetInfo Target)
{
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"InputCore",
"AppFramework",
"Slate",
"SlateCore",
"DirectoryWatcher",
}
);
PrivateIncludePaths.AddRange(
new string[] {
"Developer/SlateFileDialogs/Private",
}
);
PrivateIncludePathModuleNames.Add("TargetPlatform");
}
}