mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +08:00
32 lines
997 B
C#
32 lines
997 B
C#
// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class SpineEditorPlugin : ModuleRules
|
|
{
|
|
public SpineEditorPlugin(TargetInfo Target)
|
|
{
|
|
PublicIncludePaths.AddRange(new string[] { "SpineEditorPlugin/Public", "SpinePlugin/Public/spine-c/include" });
|
|
|
|
PrivateIncludePaths.AddRange(new string[] { "SpineEditorPlugin/Private", "SpinePlugin/Public/spine-c/include" });
|
|
|
|
PublicDependencyModuleNames.AddRange(new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"UnrealEd",
|
|
"SpinePlugin"
|
|
});
|
|
|
|
PublicIncludePathModuleNames.AddRange(new string[] {
|
|
"AssetTools",
|
|
"AssetRegistry"
|
|
});
|
|
|
|
DynamicallyLoadedModuleNames.AddRange(new string[] {
|
|
"AssetTools",
|
|
"AssetRegistry"
|
|
});
|
|
}
|
|
}
|
|
} |