Files
jordan hoffmann 9db68b0847 [Feature] CmdLink.exe that can run commands on an active UE process
#rb josh.adams justin.harematthew.sorrels

[CL 26351922 by jordan hoffmann in ue5-main branch]
2023-06-30 15:09:35 -04:00

22 lines
465 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class CmdLink : ModuleRules
{
public CmdLink(ReadOnlyTargetRules Target) : base(Target)
{
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
}
);
PrivateIncludePathModuleNames.AddRange(
new string[] {
"Launch",
"TargetPlatform",
});
}
}