We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 508dbca commit 55293a3Copy full SHA for 55293a3
tests/sys/src/UtilityProcess.hx
@@ -82,6 +82,8 @@ class UtilityProcess {
82
var proc =
83
#if (macro || interp)
84
new Process("haxe", ["compile-each.hxml", "-p", options.execPath, "--run", options.execName].concat(args));
85
+ #elseif cppia
86
+ new Process(Sys.getEnv("CPPIA_HOST"), [execFull].concat(args));
87
#elseif cpp
88
new Process(execFull, args);
89
#elseif java
0 commit comments