Files
UnrealEngineUWP/Engine/Source/Developer/AudioFormatADPCM/AudioFormatADPCM.Build.cs
jimmy smith 5d68918c4b Move all Engine Decoders into their own modules
#jira UE-204038
#rb jake.burga
#tests compilation tests, all platforms

[CL 30660535 by jimmy smith in ue5-main branch]
2024-01-17 11:51:40 -05:00

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");
}
}
}