Files
UnrealEngineUWP/Engine/Source/Editor/DetailCustomizations/DetailCustomizations.Build.cs
Martin Mittring b14265f94a Improved Blendables, exposed weight on each blendable entry, better blueprint access, Outer=package/object
base for a change to replace all PostProcessSettings with Blendables. See new documentation on blendables.

[CL 2596231 by Martin Mittring in Main branch]
2015-06-22 18:03:15 -04:00

71 lines
1.6 KiB
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class DetailCustomizations : ModuleRules
{
public DetailCustomizations(TargetInfo Target)
{
PrivateIncludePaths.Add("Editor/DetailCustomizations/Private"); // For PCH includes (because they don't work with relative paths, yet)
PrivateDependencyModuleNames.AddRange(
new string[] {
"AppFramework",
"Core",
"CoreUObject",
"DesktopWidgets",
"Engine",
"Landscape",
"InputCore",
"Slate",
"SlateCore",
"EditorStyle",
"UnrealEd",
"EditorWidgets",
"KismetWidgets",
"SharedSettingsWidgets",
"ContentBrowser",
"BlueprintGraph",
"AnimGraph",
"PropertyEditor",
"LevelEditor",
"DesktopPlatform",
"ClassViewer",
"TargetPlatform",
"ExternalImagePicker",
"MoviePlayer",
"SourceControl",
"InternationalizationSettings",
"SourceCodeAccess",
"RHI",
"MediaAssets",
"HardwareTargeting",
"SharedSettingsWidgets",
"LightPropagationVolumeRuntime",
"AIModule",
"MeshUtilities",
"ConfigEditor",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Engine",
"Media",
"Landscape",
"LandscapeEditor",
"PropertyEditor",
"GameProjectGeneration",
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[] {
"Layers",
"PropertyEditor",
"GameProjectGeneration",
}
);
}
}