Files
UnrealEngineUWP/Engine/Source/Developer/Android/AndroidTargetPlatform/AndroidTargetPlatform.Build.cs
Robert Jones 566d29dd25 #ttp 334858 Android : Support ADPCM
Added support for ADPCM decoding.
Added 'sound type' information to USoundWave
- Android uses this to detect which type of asset it needs to deal with
Added support for selected encoding type via project settings

#codereview Daniel.Lamb, Chris.Babcock

[CL 2260750 by Robert Jones in Main branch]
2014-08-18 09:13:38 -04:00

44 lines
887 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AndroidTargetPlatform : ModuleRules
{
public AndroidTargetPlatform(TargetInfo Target)
{
BinariesSubFolder = "Android";
PrivateDependencyModuleNames.AddRange(
new string[]
{
"Core",
"CoreUObject",
"TargetPlatform",
"DesktopPlatform",
"AndroidDeviceDetection",
}
);
PublicIncludePaths.AddRange(
new string[]
{
"Runtime/Core/Public/Android"
}
);
if (UEBuildConfiguration.bCompileAgainstEngine)
{
PrivateDependencyModuleNames.Add("Engine");
PrivateIncludePathModuleNames.Add("TextureCompressor"); //@todo android: AndroidTargetPlatform.Build
}
Definitions.Add("WITH_OGGVORBIS=1");
PrivateIncludePaths.AddRange(
new string[]
{
"Developer/AndroidTargetPlatform/Classes"
}
);
}
}