Files
UnrealEngineUWP/Engine/Source/Editor/GameProjectGeneration/GameProjectGeneration.Build.cs
Steve Robb 7661666dcb Error when a module is both a dependency and dynamically loaded.
Fixes for lots of existing modules by removing all dynamically loaded duplicates (this is probably not the correct solution, but is the safest).

#codereview robert.manuszewski

[CL 2610845 by Steve Robb in Main branch]
2015-07-06 05:46:20 -04:00

62 lines
1.4 KiB
C#

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