2019-12-26 15:32:37 -05:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
2017-06-21 10:25:35 -04:00
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
using System.IO;
|
|
|
|
|
public class MaterialBaking : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public MaterialBaking(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
2023-05-15 16:26:12 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
2017-06-21 10:25:35 -04:00
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
"RenderCore",
|
2023-05-15 16:26:12 -04:00
|
|
|
"RHI",
|
|
|
|
|
"UnrealEd",
|
|
|
|
|
"MainFrame",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"Slate",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"PropertyEditor",
|
|
|
|
|
|
|
|
|
|
"Renderer",
|
|
|
|
|
"MeshDescription",
|
2019-10-01 20:41:42 -04:00
|
|
|
"StaticMeshDescription"
|
2023-05-15 16:26:12 -04:00
|
|
|
}
|
2017-06-21 10:25:35 -04:00
|
|
|
);
|
2023-05-15 16:26:12 -04:00
|
|
|
}
|
2017-06-21 10:25:35 -04:00
|
|
|
}
|