15 lines
392 B
C#
15 lines
392 B
C#
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class MyProjectTarget : TargetRules
|
|
{
|
|
public MyProjectTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
Type = TargetType.Game;
|
|
DefaultBuildSettings = BuildSettingsVersion.V5;
|
|
|
|
ExtraModuleNames.AddRange(new string[] { "MyProject", "hstherac25" });
|
|
}
|
|
}
|