Files
UnrealEngineUWP/Engine/Source/Developer/AudioFormatOgg/AudioFormatOgg.Build.cs
2014-03-14 14:13:41 -04:00

32 lines
716 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class AudioFormatOgg : ModuleRules
{
public AudioFormatOgg(TargetInfo Target)
{
PrivateIncludePathModuleNames.Add("TargetPlatform");
PrivateDependencyModuleNames.AddRange(
new string[] {
"Core",
"Engine"
}
);
if ((Target.Platform == UnrealTargetPlatform.Win64) ||
(Target.Platform == UnrealTargetPlatform.Win32) ||
(Target.Platform == UnrealTargetPlatform.Mac) ||
((Target.Platform == UnrealTargetPlatform.HTML5 && Target.Architecture == "-win32"))
)
{
AddThirdPartyPrivateStaticDependencies(Target,
"UEOgg",
"Vorbis",
"VorbisFile"
);
}
}
}