spine-runtimes/spine-ue4/Source/SpineUE4.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

15 lines
381 B
C#

// Fill out your copyright notice in the Description page of Project Settings.
using UnrealBuildTool;
using System.Collections.Generic;
public class SpineUE4Target : TargetRules
{
public SpineUE4Target(TargetInfo Target) : base(Target)
{
DefaultBuildSettings = BuildSettingsVersion.V2;
Type = TargetType.Game;
ExtraModuleNames.AddRange(new string[] { "SpineUE4" });
}
}