Files
Michael Sartain d5dc488df9 Add Linux Support to RenderDocPlugin
Either the qrenderdoc binary needs to be on the PATH, or renderdoc.BinaryPath must be set.

File dialog to locate qrenderdoc binary is currently ifdef'd out until we can get a Linux system dialog implemented.

#jira UE-140925
#review-18881012 @Brandon.Schaefer, @Robert.Seiver
#fyi Will.Damon
#preflight 18880667

[CL 18889772 by Michael Sartain in ue5-main branch]
2022-02-07 13:57:00 -05:00

19 lines
453 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class RenderDoc : ModuleRules
{
public RenderDoc(ReadOnlyTargetRules Target) : base(Target)
{
Type = ModuleType.External;
if (Target.Platform == UnrealTargetPlatform.Win64 ||
Target.IsInPlatformGroup(UnrealPlatformGroup.Linux))
{
string ApiPath = Target.UEThirdPartySourceDirectory + "RenderDoc/";
PublicSystemIncludePaths.Add(ApiPath);
}
}
}