Files
UnrealEngine/Engine/Plugins/Experimental/NNERuntimeRDG/Source/NNERuntimeRDGUtils/NNERuntimeRDGUtils.Build.cs
2025-05-18 13:04:45 +08:00

32 lines
611 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
using System.IO;
public class NNERuntimeRDGUtils : ModuleRules
{
public NNERuntimeRDGUtils(ReadOnlyTargetRules Target) : base(Target)
{
PCHUsage = ModuleRules.PCHUsageMode.UseExplicitOrSharedPCHs;
PublicDependencyModuleNames.Add("NNE");
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"Engine",
"Projects",
"NNEHlslShaders",
"NNERuntimeRDGData",
"NNERuntimeRDGProtobufEditor",
"NNERuntimeRDGOnnxruntimeEditor",
"NNERuntimeRDGOnnxEditor"
}
);
}
}