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;