From e82ab6c1b39dd1a67223e50c1fab83e3ec230777 Mon Sep 17 00:00:00 2001 From: Joshua Granick Date: Fri, 5 Dec 2014 11:19:14 -0800 Subject: [PATCH] Add unofficial 'java' target command --- tools/CommandLineTools.hx | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/tools/CommandLineTools.hx b/tools/CommandLineTools.hx index 5a114fb01..f13f20fdf 100644 --- a/tools/CommandLineTools.hx +++ b/tools/CommandLineTools.hx @@ -209,6 +209,16 @@ class CommandLineTools { target = PlatformHelper.hostPlatform; targetFlags.set ("neko", ""); + + case "java": + + target = PlatformHelper.hostPlatform; + targetFlags.set ("java", ""); + + case "nodejs": + + target = PlatformHelper.hostPlatform; + targetFlags.set ("nodejs", ""); case "iphone", "iphoneos": @@ -1098,6 +1108,11 @@ class CommandLineTools { target = PlatformHelper.hostPlatform; targetFlags.set ("neko", ""); + case "java": + + target = PlatformHelper.hostPlatform; + targetFlags.set ("java", ""); + case "nodejs": target = PlatformHelper.hostPlatform;