2018-12-17 06:31:16 -05:00
|
|
|
// Copyright 1998-2019 Epic Games, Inc. All Rights Reserved.
|
2018-02-22 10:04:16 -05:00
|
|
|
|
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
|
|
|
{
|
|
|
|
|
public class MeshDescriptionOperations : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public MeshDescriptionOperations(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
|
|
|
|
PrivateIncludePaths.Add("Developer/MeshDescriptionOperations/Private");
|
|
|
|
|
PublicIncludePaths.Add("Developer/MeshDescriptionOperations/Public");
|
|
|
|
|
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"RenderCore",
|
|
|
|
|
"MeshDescription",
|
2018-07-31 05:49:40 -04:00
|
|
|
"MeshUtilitiesCommon",
|
2018-02-22 10:04:16 -05:00
|
|
|
"RawMesh",
|
|
|
|
|
"RHI"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
AddEngineThirdPartyPrivateStaticDependencies(Target, "MikkTSpace");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|