Frist Commit

This commit is contained in:
2023-07-16 14:29:40 +08:00
parent 3f1ae11c29
commit 16f7c132ac
633 changed files with 64621 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
// Copyright 1998-2020 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class RiderLogging : ModuleRules
{
public RiderLogging(ReadOnlyTargetRules Target) : base(Target)
{
#if UE_4_22_OR_LATER
PCHUsage = PCHUsageMode.NoPCHs;
#else
PCHUsage = PCHUsageMode.NoSharedPCHs;
#endif
bUseRTTI = true;
PrivateDependencyModuleNames.AddRange(new []
{
"Core",
"RD",
"RiderLink",
"RiderBlueprint"
});
}
}