mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2025-12-21 01:36:02 +08:00
Merge branch '3.6-beta' of https://github.com/esotericsoftware/spine-runtimes into 3.6-beta
This commit is contained in:
commit
39b80e0e92
@ -4,7 +4,7 @@ namespace UnrealBuildTool.Rules
|
|||||||
{
|
{
|
||||||
public class SpineEditorPlugin : ModuleRules
|
public class SpineEditorPlugin : ModuleRules
|
||||||
{
|
{
|
||||||
public SpineEditorPlugin(TargetInfo Target)
|
public SpineEditorPlugin(ReadOnlyTargetRules Target) : base(Target)
|
||||||
{
|
{
|
||||||
PublicIncludePaths.AddRange(new string[] { "SpineEditorPlugin/Public", "SpinePlugin/Public/spine-c/include" });
|
PublicIncludePaths.AddRange(new string[] { "SpineEditorPlugin/Public", "SpinePlugin/Public/spine-c/include" });
|
||||||
|
|
||||||
|
|||||||
@ -4,7 +4,7 @@ namespace UnrealBuildTool.Rules
|
|||||||
{
|
{
|
||||||
public class SpinePlugin : ModuleRules
|
public class SpinePlugin : ModuleRules
|
||||||
{
|
{
|
||||||
public SpinePlugin(TargetInfo Target)
|
public SpinePlugin(ReadOnlyTargetRules Target) : base(Target)
|
||||||
{
|
{
|
||||||
PublicIncludePaths.AddRange(new string[] { "SpinePlugin/Public", "SpinePlugin/Public/spine-c/include" });
|
PublicIncludePaths.AddRange(new string[] { "SpinePlugin/Public", "SpinePlugin/Public/spine-c/include" });
|
||||||
PrivateIncludePaths.AddRange(new string[] { "SpinePlugin/Private", "SpinePlugin/Public/spine-c/include" });
|
PrivateIncludePaths.AddRange(new string[] { "SpinePlugin/Private", "SpinePlugin/Public/spine-c/include" });
|
||||||
|
|||||||
@ -5,7 +5,7 @@ using System.Collections.Generic;
|
|||||||
|
|
||||||
public class SpineUE4Target : TargetRules
|
public class SpineUE4Target : TargetRules
|
||||||
{
|
{
|
||||||
public SpineUE4Target(TargetInfo Target)
|
public SpineUE4Target(ReadOnlyTargetRules Target) : base(Target)
|
||||||
{
|
{
|
||||||
Type = TargetType.Game;
|
Type = TargetType.Game;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -4,7 +4,7 @@ using UnrealBuildTool;
|
|||||||
|
|
||||||
public class SpineUE4 : ModuleRules
|
public class SpineUE4 : ModuleRules
|
||||||
{
|
{
|
||||||
public SpineUE4(TargetInfo Target)
|
public SpineUE4(ReadOnlyTargetRules Target) : base(Target)
|
||||||
{
|
{
|
||||||
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "ProceduralMeshComponent" });
|
PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "ProceduralMeshComponent" });
|
||||||
|
|
||||||
|
|||||||
@ -5,7 +5,7 @@ using System.Collections.Generic;
|
|||||||
|
|
||||||
public class SpineUE4EditorTarget : TargetRules
|
public class SpineUE4EditorTarget : TargetRules
|
||||||
{
|
{
|
||||||
public SpineUE4EditorTarget(TargetInfo Target)
|
public SpineUE4EditorTarget(ReadOnlyTargetRules Target) : base(Target)
|
||||||
{
|
{
|
||||||
Type = TargetType.Editor;
|
Type = TargetType.Editor;
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user