diff --git a/include.xml b/include.xml index b01a1cddb..0b55bb24f 100644 --- a/include.xml +++ b/include.xml @@ -51,7 +51,7 @@ - + diff --git a/lime/tools/platforms/TVOSPlatform.hx b/lime/tools/platforms/TVOSPlatform.hx index a69c58830..b0322d79a 100644 --- a/lime/tools/platforms/TVOSPlatform.hx +++ b/lime/tools/platforms/TVOSPlatform.hx @@ -485,9 +485,9 @@ class TVOSPlatform extends PlatformTarget { if (!FileSystem.exists (releaseLib)) { - releaseLib = PathHelper.getLibraryPath (ndll, "iPhone", "lib", ".iphoneos.a"); + releaseLib = PathHelper.getLibraryPath (ndll, "tvOS", "lib", ".tvos.a"); LogHelper.info("alternative releaseLib: " + releaseLib); - debugLib = PathHelper.getLibraryPath (ndll, "iPhone", "lib", ".iphoneos.a", true); + debugLib = PathHelper.getLibraryPath (ndll, "tvOS", "lib", ".tvos.a", true); } diff --git a/project/Build.xml b/project/Build.xml index 16e71b58e..4529a841f 100644 --- a/project/Build.xml +++ b/project/Build.xml @@ -185,7 +185,7 @@ - + @@ -200,7 +200,7 @@ - + @@ -262,7 +262,7 @@ - + diff --git a/tools/CommandLineTools.hx b/tools/CommandLineTools.hx index 23f138653..fcb236dd6 100644 --- a/tools/CommandLineTools.hx +++ b/tools/CommandLineTools.hx @@ -237,6 +237,10 @@ class CommandLineTools { target = Platform.FIREFOX; overrides.haxedefs.set ("firefoxos", ""); + case "tvos": + + target = Platform.TVOS; + default: target = cast targetName.toLowerCase ();