31 lines
849 B
C#
31 lines
849 B
C#
// Fill out your copyright notice in the Description page of Project Settings.
|
|
|
|
using UnrealBuildTool;
|
|
using System.Collections.Generic;
|
|
|
|
public class VRExpPluginExampleEditorTarget : TargetRules
|
|
{
|
|
public VRExpPluginExampleEditorTarget(TargetInfo Target) : base(Target)
|
|
{
|
|
DefaultBuildSettings = BuildSettingsVersion.V2;
|
|
IncludeOrderVersion = EngineIncludeOrderVersion.Latest;
|
|
|
|
Type = TargetType.Editor;
|
|
ExtraModuleNames.AddRange(new string[] { "VRExpPluginExample" });
|
|
//bUseUnityBuild = false;
|
|
//bUsePCHFiles = false;
|
|
}
|
|
|
|
//
|
|
// TargetRules interface.
|
|
//
|
|
|
|
/* public override void SetupBinaries(
|
|
TargetInfo Target,
|
|
ref List<UEBuildBinaryConfiguration> OutBuildBinaryConfigurations,
|
|
ref List<string> OutExtraModuleNames
|
|
)
|
|
{
|
|
OutExtraModuleNames.AddRange( new string[] { "VRExpPluginExample" } );
|
|
}*/
|
|
}
|