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,16 @@
// Copyright 1998-2018 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class RiderShaderInfo : ModuleRules
{
public RiderShaderInfo(ReadOnlyTargetRules Target) : base(Target)
{
#if UE_4_22_OR_LATER
PCHUsage = PCHUsageMode.NoPCHs;
#else
PCHUsage = PCHUsageMode.NoSharedPCHs;
#endif
PrivateDependencyModuleNames.AddRange(new string[] { "Core", "Projects", "RenderCore" });
}
}