You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-204038 #rb jake.burga #tests compilation tests, all platforms [CL 30660535 by jimmy smith in ue5-main branch]
19 lines
449 B
C#
19 lines
449 B
C#
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class AudioFormatADPCM : ModuleRules
|
|
{
|
|
public AudioFormatADPCM(ReadOnlyTargetRules Target) : base(Target)
|
|
{
|
|
PrivateIncludePathModuleNames.Add("TargetPlatform");
|
|
PrivateDependencyModuleNames.Add("AdpcmAudioDecoder");
|
|
PrivateDependencyModuleNames.Add("Core");
|
|
if (Target.bCompileAgainstEngine)
|
|
{
|
|
PrivateDependencyModuleNames.Add("Engine");
|
|
|
|
}
|
|
}
|
|
}
|