You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
533 B
22 lines
533 B
// Georgy Treshchev 2025.
|
|
|
|
using System.IO;
|
|
using UnrealBuildTool;
|
|
|
|
public class RuntimeMetaHumanLipSyncDeveloper : ModuleRules
|
|
{
|
|
public RuntimeMetaHumanLipSyncDeveloper(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs;
|
|
|
|
PublicDependencyModuleNames.AddRange( new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"RuntimeMetaHumanLipSync",
|
|
"AnimGraphRuntime",
|
|
"AnimGraph",
|
|
"BlueprintGraph", "Engine"
|
|
});
|
|
}
|
|
}
|
|
|
|
|