Files
UnrealEngineUWP/Engine/Source/Programs/Enterprise/Datasmith/DatasmithCADRuntime/DatasmithCADRuntime.Target.cs
Marc Audy 8f73cd7fa9 Merge UE5/Release-Engine-Staging @ 15630841 to UE5/Main
This represents UE4/Main @ 15601601

[CL 15631170 by Marc Audy in ue5-main branch]
2021-03-05 19:27:14 -04:00

45 lines
1.2 KiB
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.Collections.Generic;
public class DatasmithCADRuntimeTarget : TargetRules
{
public DatasmithCADRuntimeTarget(TargetInfo Target)
: base(Target)
{
Type = TargetType.Program;
SolutionDirectory = "Programs/Datasmith";
LaunchModuleName = "DatasmithCADRuntime";
SolutionDirectory = "Programs/Datasmith";
//ExtraModuleNames.AddRange(new string[] { "CADInterfaces" });
GlobalDefinitions.Add("UE_EXTERNAL_PROFILING_ENABLED=0");
LinkType = TargetLinkType.Monolithic;
bShouldCompileAsDLL = true;
bBuildDeveloperTools = false;
bBuildWithEditorOnlyData = false;
bCompileChaos = false;
bCompileAgainstEngine = false;
bCompileAgainstCoreUObject = false;
bCompileICU = false;
bDisableDebugInfo = false;
bUseMallocProfiler = false;
bUsePDBFiles = true;
bUsesSlate = false;
bHasExports = true;
bIsBuildingConsoleApplication = true;
bLegalToDistributeBinary = true;
string EngineDir = @"..\.."; // relative to default destination, which is $(EngineDir)\Binaries\Win64
ExeBinariesSubFolder = EngineDir + @"\Plugins\Enterprise\DatasmithCADImporter\Binaries\Win64\";
}
}