Files
SGBasicDemo/Source/SGBasicDemo.Target.cs
T

16 lines
397 B
C#
Raw Normal View History

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