2014-03-14 14:13:41 -04:00
|
|
|
// 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",
|
|
|
|
|
"EditorStyle",
|
|
|
|
|
"SourceControl",
|
|
|
|
|
"UnrealEd",
|
2014-04-23 18:32:52 -04:00
|
|
|
"DesktopPlatform"
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"ClassViewer",
|
|
|
|
|
"DesktopPlatform",
|
|
|
|
|
"MainFrame",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|