Files
fredric echols 0dbf56cf07 Re-modularized UGSCore (UGSShared) so UGSCmd can be added as its own executable.
#jira none
#rb none
#preflight none

[CL 21361062 by fredric echols in ue5-main branch]
2022-08-12 15:13:26 -04:00

31 lines
518 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class UGSCore : ModuleRules
{
public UGSCore(ReadOnlyTargetRules Target) : base(Target)
{
// UGS Shared library public includes
PublicIncludePaths.Add("Programs/UGSCore/");
PublicDependencyModuleNames.Add("Core");
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"Json"
}
);
PrivateIncludePaths.AddRange(
new string[]
{
});
bEnableExceptions = false;
bUseRTTI = false;
}
}