You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Before: 1 Unity file Total CPU Time: 162.90625 s Total time in Parallel executor: 61.62 seconds After: 6 Unity files Total CPU Time: 169.15625 s Total time in Parallel executor: 16.64 seconds #jira [FYI] nick.darnell, joe.kirchoff #preflight 632889795f55ba280ec1ef84 [CL 22087017 by bryan sefcik in ue5-main branch]
37 lines
640 B
C#
37 lines
640 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
using System.IO;
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class MetasoundStandardNodes : ModuleRules
|
|
{
|
|
public MetasoundStandardNodes(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicDependencyModuleNames.AddRange
|
|
(
|
|
new string[]
|
|
{
|
|
"AudioExtensions",
|
|
"Core",
|
|
"MetasoundFrontend",
|
|
"Serialization",
|
|
"SignalProcessing"
|
|
}
|
|
);
|
|
|
|
PrivateDependencyModuleNames.AddRange
|
|
(
|
|
new string[]
|
|
{
|
|
"CoreUObject",
|
|
"MetasoundGraphCore"
|
|
}
|
|
);
|
|
|
|
NumIncludedBytesPerUnityCPPOverride = 120 * 1024;
|
|
}
|
|
}
|
|
}
|