You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb phil.popp #jira UE-178166, UE-178167, UE-178169, UE-178180 #preflight 641a3a0fa6092dfb8d752a67 [CL 24756329 by Brian Chrisman in ue5-main branch]
18 lines
422 B
C#
18 lines
422 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class AudioCaptureWasapi : ModuleRules
|
|
{
|
|
public AudioCaptureWasapi(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateDependencyModuleNames.Add("Core");
|
|
PrivateDependencyModuleNames.Add("AudioCaptureCore");
|
|
|
|
if (Target.Platform.IsInGroup(UnrealPlatformGroup.Windows))
|
|
{
|
|
PublicDefinitions.Add("WITH_AUDIOCAPTURE=1");
|
|
}
|
|
}
|
|
}
|