2019-12-27 09:26:59 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-10-01 20:41:42 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
2021-07-29 20:08:48 -04:00
|
|
|
public class MeshModelingTools : ModuleRules
|
2019-10-01 20:41:42 -04:00
|
|
|
{
|
2021-07-29 20:08:48 -04:00
|
|
|
public MeshModelingTools(ReadOnlyTargetRules Target) : base(Target)
|
2019-10-01 20:41:42 -04:00
|
|
|
{
|
|
|
|
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
2022-02-02 01:48:09 -05:00
|
|
|
|
2019-10-01 20:41:42 -04:00
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"Core",
|
2021-09-30 12:00:06 -04:00
|
|
|
"InputCore",
|
2022-02-02 01:48:09 -05:00
|
|
|
"InteractiveToolsFramework",
|
2021-05-21 01:04:38 -04:00
|
|
|
"GeometryCore",
|
2021-10-01 10:46:45 -04:00
|
|
|
"GeometryFramework",
|
2021-09-30 12:00:06 -04:00
|
|
|
"GeometryAlgorithms",
|
2019-10-01 20:41:42 -04:00
|
|
|
"DynamicMesh",
|
2021-09-30 12:00:06 -04:00
|
|
|
"MeshConversion",
|
2021-12-02 15:47:10 -05:00
|
|
|
"MeshDescription",
|
|
|
|
|
"StaticMeshDescription",
|
2021-07-29 20:08:48 -04:00
|
|
|
"ModelingComponents",
|
2021-09-30 12:00:06 -04:00
|
|
|
"ModelingOperators",
|
2019-10-01 20:41:42 -04:00
|
|
|
// ... add other public dependencies that you statically link with here ...
|
|
|
|
|
}
|
2022-02-02 01:48:09 -05:00
|
|
|
);
|
|
|
|
|
|
2019-10-01 20:41:42 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
2021-07-29 20:08:48 -04:00
|
|
|
// ... add private dependencies that you statically link with here ...
|
2019-10-01 20:41:42 -04:00
|
|
|
}
|
2022-02-02 01:48:09 -05:00
|
|
|
);
|
2019-10-01 20:41:42 -04:00
|
|
|
}
|
2022-02-02 01:48:09 -05:00
|
|
|
}
|