Files
UnrealEngineUWP/Engine/Source/Runtime/SynthBenchmark/SynthBenchmark.Build.cs
ionut matasaru 00a44348e3 SynthBenchmark: Fixed conversion warnings. Enabled UnsafeTypeCast warnings as errors.
#rb Catalin.Dragoiu

[CL 28340939 by ionut matasaru in ue5-main branch]
2023-09-29 09:47:47 -04:00

38 lines
793 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace UnrealBuildTool.Rules
{
public class SynthBenchmark : ModuleRules
{
public SynthBenchmark(ReadOnlyTargetRules Target) : base(Target)
{
UnsafeTypeCastWarningLevel = WarningLevel.Error;
PublicDependencyModuleNames.AddRange(
new string[]
{
"Core",
"RenderCore",
"RHI",
// ... add other public dependencies that you statically link with here ...
}
);
PrivateDependencyModuleNames.AddRange(
new string[]
{
"ApplicationCore"
// ... add private dependencies that you statically link with here ...
}
);
DynamicallyLoadedModuleNames.AddRange(
new string[]
{
// ... add any modules that your module loads dynamically here ...
}
);
}
}
}