Files
UnrealEngineUWP/Engine/Source/Runtime/HTML5/HTML5JS/HTML5JS.Build.cs
Peter Sauerbrei 446972d460 [INTEGRATE] Chage 2082198
final changes to make Tappy Chicken for HTML5
#ue4
#html5
#tappy chicken

[CL 2082256 by Peter Sauerbrei in Main branch]
2014-05-22 15:14:51 -04:00

17 lines
495 B
C#

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
public class HTML5JS : ModuleRules
{
// does not depend on any unreal modules.
// UBT doesn't automatically understand .js code and the fact that it needs to be linked in or not.
public HTML5JS(TargetInfo Target)
{
if (Target.Platform == UnrealTargetPlatform.HTML5 && Target.Architecture != "-win32")
{
PublicAdditionalLibraries.Add("Runtime/HTML5/HTML5JS/Private/HTML5JavaScriptFx.js");
}
}
}