Files
UnrealEngineUWP/Engine/Source/Editor/GameProjectGeneration/GameProjectGeneration.Build.cs
Peter Sauerbrei 1877e59df2 Don't allow an underscore in the project name if the XB1 XDK is installed
Fixes TTP333191
#ue4

[CL 2067286 by Peter Sauerbrei in Main branch]
2014-05-08 15:03:34 -04:00

46 lines
935 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class GameProjectGeneration : ModuleRules
{
public GameProjectGeneration(TargetInfo Target)
{
PrivateIncludePathModuleNames.AddRange(
new string[] {
"ClassViewer",
"DesktopPlatform",
"MainFrame",
}
);
PrivateDependencyModuleNames.AddRange(
new string[] {
"Analytics",
"Core",
"CoreUObject",
"Engine",
"EngineSettings",
"InputCore",
"Projects",
"RenderCore",
"Slate",
"SlateCore",
"EditorStyle",
"SourceControl",
"TargetPlatform",
"UnrealEd",
"DesktopPlatform"
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"ClassViewer",
"DesktopPlatform",
"MainFrame",
}
);
}
}