You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Copying //UE4/Dev-Editor to Dev-Main (//UE4/Dev-Main) for 4.24
#rb none [CL 9325047 by Chris Gagnon in Main branch]
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
||||
|
||||
namespace UnrealBuildTool.Rules
|
||||
{
|
||||
//MeshBuilder module is a editor module
|
||||
public class MeshBuilderCommon : ModuleRules
|
||||
{
|
||||
public MeshBuilderCommon(ReadOnlyTargetRules Target) : base(Target)
|
||||
{
|
||||
PublicDependencyModuleNames.AddRange(
|
||||
new string[]
|
||||
{
|
||||
"Core",
|
||||
"Engine",
|
||||
}
|
||||
);
|
||||
|
||||
AddEngineThirdPartyPrivateStaticDependencies(Target,
|
||||
"nvTriStrip",
|
||||
"ForsythTriOptimizer",
|
||||
"nvTessLib"
|
||||
);
|
||||
|
||||
if (Target.IsInPlatformGroup(UnrealPlatformGroup.Unix))
|
||||
{
|
||||
PublicSystemLibraries.Add("stdc++"); // can be fixed, see UE-70769
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user