2019-12-27 09:26:59 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2019-09-12 13:55:17 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
2021-07-29 20:08:48 -04:00
|
|
|
public class MeshModelingToolsExp : ModuleRules
|
2019-09-12 13:55:17 -04:00
|
|
|
{
|
2021-07-29 20:08:48 -04:00
|
|
|
public MeshModelingToolsExp(ReadOnlyTargetRules Target) : base(Target)
|
2019-09-12 13:55:17 -04:00
|
|
|
{
|
|
|
|
|
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
|
2022-02-02 01:48:09 -05:00
|
|
|
|
2019-09-12 13:55:17 -04:00
|
|
|
PublicIncludePaths.AddRange(
|
2022-02-02 01:48:09 -05:00
|
|
|
new string[]
|
|
|
|
|
{
|
2019-09-12 13:55:17 -04:00
|
|
|
// ... add public include paths required here ...
|
|
|
|
|
}
|
2022-02-02 01:48:09 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
|
|
PrivateIncludePaths.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
// ... add other private include paths required here ...
|
2019-09-12 13:55:17 -04:00
|
|
|
}
|
2021-05-13 19:06:22 -04:00
|
|
|
);
|
2022-02-02 01:48:09 -05:00
|
|
|
|
2019-09-12 13:55:17 -04:00
|
|
|
PublicDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"Core",
|
2022-02-02 01:48:09 -05:00
|
|
|
"InteractiveToolsFramework",
|
2021-05-21 01:04:38 -04:00
|
|
|
"GeometryCore",
|
2021-06-22 12:11:21 -04:00
|
|
|
"GeometryFramework",
|
2019-09-12 13:55:17 -04:00
|
|
|
"DynamicMesh",
|
|
|
|
|
"MeshConversion",
|
2020-01-27 20:11:15 -05:00
|
|
|
"MeshDescription",
|
2021-10-28 19:47:45 -04:00
|
|
|
"MeshModelingTools",
|
2022-02-02 01:48:09 -05:00
|
|
|
"StaticMeshDescription",
|
|
|
|
|
"SkeletalMeshDescription",
|
2019-09-12 13:55:17 -04:00
|
|
|
"ModelingComponents",
|
2023-06-06 12:28:59 -04:00
|
|
|
"ModelingOperators"
|
2019-09-12 13:55:17 -04:00
|
|
|
// ... add other public dependencies that you statically link with here ...
|
|
|
|
|
}
|
2022-02-02 01:48:09 -05:00
|
|
|
);
|
|
|
|
|
|
2019-09-12 13:55:17 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
2020-10-29 13:38:15 -04:00
|
|
|
"RenderCore",
|
2019-09-12 13:55:17 -04:00
|
|
|
"InputCore",
|
2021-05-13 19:06:22 -04:00
|
|
|
"PhysicsCore",
|
2019-09-12 13:55:17 -04:00
|
|
|
// ... add private dependencies that you statically link with here ...
|
|
|
|
|
}
|
2022-02-02 01:48:09 -05:00
|
|
|
);
|
|
|
|
|
|
2023-12-15 16:11:52 -05:00
|
|
|
if (Target.bCompileAgainstEditor) // #if WITH_EDITOR
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
"ModelingComponentsEditorOnly"
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-12 13:55:17 -04:00
|
|
|
DynamicallyLoadedModuleNames.AddRange(
|
|
|
|
|
new string[]
|
|
|
|
|
{
|
|
|
|
|
// ... add any modules that your module loads dynamically here ...
|
|
|
|
|
}
|
2022-02-02 01:48:09 -05:00
|
|
|
);
|
2019-09-12 13:55:17 -04:00
|
|
|
}
|
2022-02-02 01:48:09 -05:00
|
|
|
}
|