You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
90 lines
1.9 KiB
C#
90 lines
1.9 KiB
C#
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class AssetTools : ModuleRules
|
|
{
|
|
public AssetTools(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePaths.Add("Developer/AssetTools/Private");
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"CurveAssetEditor",
|
|
"Engine",
|
|
"InputCore",
|
|
"ApplicationCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorStyle",
|
|
"SourceControl",
|
|
"TextureEditor",
|
|
"UnrealEd",
|
|
"PropertyEditor",
|
|
"Kismet",
|
|
"Landscape",
|
|
"Foliage"
|
|
}
|
|
);
|
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
new string[] {
|
|
"Analytics",
|
|
"AssetRegistry",
|
|
"ContentBrowser",
|
|
"CollectionManager",
|
|
"CurveAssetEditor",
|
|
"DesktopPlatform",
|
|
"EditorWidgets",
|
|
"GameProjectGeneration",
|
|
"PropertyEditor",
|
|
"ActorPickerMode",
|
|
"Kismet",
|
|
"MainFrame",
|
|
"MaterialEditor",
|
|
"MessageLog",
|
|
"Persona",
|
|
"FontEditor",
|
|
"AudioEditor",
|
|
"SourceControl",
|
|
"Landscape",
|
|
"SkeletonEditor",
|
|
"SkeletalMeshEditor",
|
|
"AnimationEditor",
|
|
"AnimationBlueprintEditor",
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
new string[] {
|
|
"AssetRegistry",
|
|
"ContentBrowser",
|
|
"CollectionManager",
|
|
"CurveTableEditor",
|
|
"DataTableEditor",
|
|
"DesktopPlatform",
|
|
"EditorWidgets",
|
|
"GameProjectGeneration",
|
|
"ActorPickerMode",
|
|
"MainFrame",
|
|
"MaterialEditor",
|
|
"MessageLog",
|
|
"Persona",
|
|
"FontEditor",
|
|
"AudioEditor",
|
|
"SkeletonEditor",
|
|
"SkeletalMeshEditor",
|
|
"AnimationEditor",
|
|
"AnimationBlueprintEditor",
|
|
}
|
|
);
|
|
}
|
|
}
|