spine-runtimes/spine-ue4/Source/SpineUE4Editor.Target.cs
badlogic 8910c458e8 [ue4][cpp] Switched to IWYU build for much improved rebuild times.
Cleaned up spine-cpp and removed UE4 specific code.
2022-03-25 12:20:57 +01:00

12 lines
281 B
C#

using UnrealBuildTool;
public class SpineUE4EditorTarget : TargetRules
{
public SpineUE4EditorTarget(TargetInfo target) : base(target)
{
DefaultBuildSettings = BuildSettingsVersion.V2;
Type = TargetType.Editor;
ExtraModuleNames.AddRange(new string[] { "SpineUE4" });
}
}