Files
UnrealEngineUWP/Engine/Source/Developer/MeshUtilities/MeshUtilities.Build.cs
Ben Marsh 149375b14b Update copyright notices to 2015.
[CL 2379638 by Ben Marsh in Main branch]
2014-12-07 19:09:38 -05:00

46 lines
1.1 KiB
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
public class MeshUtilities : ModuleRules
{
public MeshUtilities(TargetInfo Target)
{
PrivateDependencyModuleNames.AddRange(
new string [] {
"Core",
"CoreUObject",
"Engine",
"RawMesh",
"RenderCore", // For FPackedNormal
"Slate", // For FSlateTextureAtlas
"SlateCore",
"UnrealEd",
"Landscape",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Landscape",
}
);
AddThirdPartyPrivateStaticDependencies(Target, "nvTriStrip");
AddThirdPartyPrivateStaticDependencies(Target, "ForsythTriOptimizer");
AddThirdPartyPrivateStaticDependencies(Target, "MeshSimplifier");
AddThirdPartyPrivateStaticDependencies(Target, "MikkTSpace");
if ((Target.Platform == UnrealTargetPlatform.Win64) || (Target.Platform == UnrealTargetPlatform.Win32))
{
AddThirdPartyPrivateStaticDependencies(Target, "DX9");
}
if (UEBuildConfiguration.bCompileSimplygon == true)
{
AddThirdPartyPrivateDynamicDependencies(Target, "SimplygonMeshReduction");
}
}
}