From 80a0b27da17dbf7795aae6d17d65887a2c721670 Mon Sep 17 00:00:00 2001 From: sebthom Date: Mon, 18 Mar 2024 12:33:56 +0100 Subject: [PATCH] support jvm target --- src/hx/sshclient/internal/Macros.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hx/sshclient/internal/Macros.hx b/src/hx/sshclient/internal/Macros.hx index 8f419db..d3801ed 100644 --- a/src/hx/sshclient/internal/Macros.hx +++ b/src/hx/sshclient/internal/Macros.hx @@ -19,7 +19,7 @@ final class Macros { throw 'ERROR: Haxe 4.2 or higher is required!'; #end final def = Context.getDefines(); - final supportedTargets = ["cpp", "cs", "hl", "java", "neko", "python"]; + final supportedTargets = ["cpp", "cs", "hl", "java", "jvm", "neko", "python"]; final targetName = def.get("target.name"); if (!supportedTargets.contains(targetName)) { throw 'ERROR: Unsupported Haxe target [${targetName}]! Supported are ${supportedTargets}';