Files
UnrealEngineUWP/Engine/Source/Developer/Toolbox/Toolbox.Build.cs
Ben Marsh abd570b7a9 Move GetSolutionFilepath() out of Core and into DesktopPlatform.
[CL 2278050 by Ben Marsh in Main branch]
2014-08-29 15:31:27 -04:00

36 lines
594 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class Toolbox : ModuleRules
{
public Toolbox(TargetInfo Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"GammaUI",
"MainFrame",
"ModuleUI"
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"InputCore",
"Slate",
"SlateCore",
"EditorStyle",
"DesktopPlatform"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"GammaUI",
"MainFrame",
"ModuleUI"
}
);
}
}