You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
58 lines
1015 B
C#
58 lines
1015 B
C#
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class ConfigEditor : ModuleRules
|
|
{
|
|
public ConfigEditor(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePaths.AddRange(
|
|
new string[] {
|
|
"Editor/ConfigEditor/Private",
|
|
"Editor/ConfigEditor/Private/PropertyVisualization",
|
|
}
|
|
);
|
|
|
|
PublicIncludePaths.AddRange(
|
|
new string[] {
|
|
"Editor/ConfigEditor/Public",
|
|
"Editor/ConfigEditor/Public/PropertyVisualization",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"EditorStyle",
|
|
"InputCore",
|
|
"PropertyEditor",
|
|
"Slate",
|
|
"SlateCore",
|
|
"SourceControl",
|
|
"TargetPlatform",
|
|
"WorkspaceMenuStructure",
|
|
}
|
|
);
|
|
|
|
|
|
CircularlyReferencedDependentModules.AddRange(
|
|
new string[]
|
|
{
|
|
"PropertyEditor",
|
|
}
|
|
);
|
|
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
}
|
|
);
|
|
}
|
|
}
|