2020-09-24 00:43:27 -04:00
|
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
|
|
|
|
|
|
using UnrealBuildTool;
|
|
|
|
|
|
|
|
|
|
public class ChaosVisualDebugger : ModuleRules
|
|
|
|
|
{
|
|
|
|
|
public ChaosVisualDebugger(ReadOnlyTargetRules Target) : base(Target)
|
|
|
|
|
{
|
2024-04-09 19:24:14 -04:00
|
|
|
PrivateDependencyModuleNames.Add("ChaosVD");
|
2020-09-24 00:43:27 -04:00
|
|
|
|
2024-04-09 19:24:14 -04:00
|
|
|
// LaunchEngineLoop dependencies
|
2020-09-24 00:43:27 -04:00
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"ApplicationCore",
|
2024-04-09 19:24:14 -04:00
|
|
|
"Core",
|
|
|
|
|
"CoreUObject",
|
|
|
|
|
"Engine",
|
|
|
|
|
"InputCore",
|
|
|
|
|
"InstallBundleManager",
|
|
|
|
|
"MediaUtils",
|
|
|
|
|
"Messaging",
|
|
|
|
|
"MoviePlayer",
|
|
|
|
|
"MoviePlayerProxy",
|
2020-09-24 00:43:27 -04:00
|
|
|
"Projects",
|
2024-04-09 19:24:14 -04:00
|
|
|
"PreLoadScreen",
|
|
|
|
|
"PIEPreviewDeviceProfileSelector",
|
|
|
|
|
"RenderCore",
|
|
|
|
|
"RHI",
|
2020-09-24 00:43:27 -04:00
|
|
|
"Slate",
|
|
|
|
|
"SlateCore",
|
|
|
|
|
"StandaloneRenderer",
|
2024-04-09 19:24:14 -04:00
|
|
|
"TraceLog",
|
|
|
|
|
"ProfileVisualizer",
|
|
|
|
|
"PropertyAccessEditor"
|
2020-09-24 00:43:27 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2024-04-09 19:24:14 -04:00
|
|
|
// LaunchEngineLoop IncludePath dependencies
|
2020-09-24 00:43:27 -04:00
|
|
|
PrivateIncludePathModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
2024-04-09 19:24:14 -04:00
|
|
|
"Launch",
|
|
|
|
|
"AutomationWorker",
|
|
|
|
|
"AutomationController",
|
|
|
|
|
"AutomationTest",
|
|
|
|
|
"DerivedDataCache",
|
|
|
|
|
"HeadMountedDisplay",
|
|
|
|
|
"MRMesh",
|
|
|
|
|
"SlateRHIRenderer",
|
|
|
|
|
"SlateNullRenderer",
|
2020-09-24 00:43:27 -04:00
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
2024-04-09 19:24:14 -04:00
|
|
|
// LaunchEngineLoop editor dependencies
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
2020-09-24 00:43:27 -04:00
|
|
|
new string[] {
|
2024-04-09 19:24:14 -04:00
|
|
|
|
|
|
|
|
"PropertyEditor",
|
|
|
|
|
"DerivedDataCache",
|
|
|
|
|
"ToolWidgets",
|
|
|
|
|
"UnrealEd"
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if (Target.IsInPlatformGroup(UnrealPlatformGroup.Linux))
|
|
|
|
|
{
|
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
|
|
|
new string[] {
|
|
|
|
|
"UnixCommonStartup"
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Target.Platform == UnrealTargetPlatform.Win64 && Target.Architecture == UnrealArch.X64)
|
|
|
|
|
{
|
|
|
|
|
PrivateDefinitions.Add("USE_D3D12_REDIST=1");
|
|
|
|
|
}
|
2020-09-24 00:43:27 -04:00
|
|
|
}
|
|
|
|
|
}
|