You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Still experimental at this point. #codereview Nick.Atamas, Matthew.Lewis, Josh.Adams [CL 2587983 by Dmitry Rekman in Main branch]
29 lines
680 B
C#
29 lines
680 B
C#
// 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");
|
|
}
|
|
}
|