13 lines
338 B
C#
13 lines
338 B
C#
using UnrealBuildTool;
|
|
|
|
public class VRWizardProjectEditorTarget : TargetRules
|
|
{
|
|
public VRWizardProjectEditorTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
DefaultBuildSettings = BuildSettingsVersion.V3;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
|
|
Type = TargetType.Editor;
|
|
ExtraModuleNames.Add("VRWizardProject");
|
|
}
|
|
}
|