You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#ROBOMERGE-SOURCE: CL 7234421 via CL 7235975 #ROBOMERGE-BOT: (v367-6836689) [CL 7236066 by matt kuhlenschmidt in Main branch]
29 lines
703 B
C#
29 lines
703 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class SlateFileDialogs : ModuleRules
|
|
{
|
|
public SlateFileDialogs(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"DirectoryWatcher",
|
|
}
|
|
);
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
"Developer/SlateFileDialogs/Private",
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.Add("TargetPlatform");
|
|
}
|
|
}
|