Files
UnrealEngineUWP/Engine/Source/Runtime/GeometryCache/GeometryCache.Build.cs
Jurre DeBaare b83b0dc15c ADDED GeometryCache files
ADDED Support for importing GeometryCache assets from Alembic files
ADDED CalculateRawMeshTangets function that only calculates the tangents without building the RawMesh

[CL 2591762 by Jurre DeBaare in Main branch]
2015-06-18 06:59:14 -04:00

30 lines
732 B
C#

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class GeometryCache : ModuleRules
{
public GeometryCache(TargetInfo Target)
{
PublicIncludePaths.Add("Runtime/GeometryCache/Public");
PrivateIncludePaths.Add("Runtime/GeometryCache/Private");
PublicDependencyModuleNames.AddRange(
new string[] {
"Core",
"CoreUObject", // @todo Mac: for some reason it's needed to link in debug on Mac
"Engine",
"Slate",
"SlateCore",
"InputCore",
"EditorStyle",
"UnrealEd",
"AssetTools",
"RenderCore",
"ShaderCore",
"RHI"
}
);
}
}