You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Add trace provider, module, & analyzer and start piping data through it as proof-of-concept #rb max.hayes #jira UE-169605 #rnx #preflight 63753d471d25fe8b933fa452 [CL 23160520 by Rob Gay in ue5-main branch]
22 lines
449 B
C#
22 lines
449 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
namespace UnrealBuildTool.Rules
|
|
{
|
|
public class AudioMixerCore : ModuleRules
|
|
{
|
|
public AudioMixerCore(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PublicIncludePathModuleNames.Add("SignalProcessing");
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[]
|
|
{
|
|
"Core",
|
|
"SignalProcessing",
|
|
"TraceLog"
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|