2019-01-02 14:54:39 -05:00
|
|
|
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
2014-03-14 14:13:41 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class GameProjectGeneration : ModuleRules
|
|
|
|
|
{
|
2017-01-30 16:52:08 -05:00
|
|
|
public GameProjectGeneration(ReadOnlyTargetRules Target) : base(Target)
|
2014-03-14 14:13:41 -04:00
|
|
|
{
|
2015-06-17 03:25:33 -04:00
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"HardwareTargeting",
|
|
|
|
|
}
|
|
|
|
|
);
|
2015-04-22 16:30:31 -04:00
|
|
|
|
2014-03-14 14:13:41 -04:00
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
2015-03-11 11:54:24 -04:00
|
|
|
"AssetRegistry",
|
|
|
|
|
"ContentBrowser",
|
2017-06-08 10:21:39 -04:00
|
|
|
"DesktopPlatform",
|
|
|
|
|
"LauncherPlatform",
|
|
|
|
|
"MainFrame",
|
2015-06-17 03:25:33 -04:00
|
|
|
"AddContentDialog",
|
|
|
|
|
"HardwareTargeting",
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"Analytics",
|
2017-08-31 12:08:38 -04:00
|
|
|
"ApplicationCore",
|
2017-06-08 10:21:39 -04:00
|
|
|
"AppFramework",
|
2015-02-19 08:07:13 -05:00
|
|
|
"ClassViewer",
|
2014-03-14 14:13:41 -04:00
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
"EngineSettings",
|
2017-06-08 10:21:39 -04:00
|
|
|
"InputCore",
|
2014-03-14 14:13:41 -04:00
|
|
|
"Projects",
|
2017-06-08 10:21:39 -04:00
|
|
|
"RenderCore",
|
2014-03-14 14:13:41 -04:00
|
|
|
"Slate",
|
2014-04-26 15:07:24 -04:00
|
|
|
"SlateCore",
|
2017-06-08 10:21:39 -04:00
|
|
|
"EditorStyle",
|
|
|
|
|
"SourceControl",
|
2014-05-08 15:03:34 -04:00
|
|
|
"TargetPlatform",
|
|
|
|
|
"UnrealEd",
|
2014-09-09 12:16:36 -04:00
|
|
|
"DesktopPlatform",
|
2017-06-08 10:21:39 -04:00
|
|
|
"LauncherPlatform",
|
|
|
|
|
"HardwareTargeting",
|
2015-06-17 03:25:33 -04:00
|
|
|
"AddContentDialog",
|
2017-03-22 12:57:30 -04:00
|
|
|
"AudioMixer"
|
2014-03-14 14:13:41 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
2015-03-11 11:54:24 -04:00
|
|
|
"AssetRegistry",
|
|
|
|
|
"ContentBrowser",
|
2014-07-14 21:21:53 -04:00
|
|
|
"Documentation",
|
2014-03-14 14:13:41 -04:00
|
|
|
"MainFrame",
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|