diff --git a/absytree.nimble b/absytree.nimble index 3cc57cda..25527e51 100644 --- a/absytree.nimble +++ b/absytree.nimble @@ -87,9 +87,9 @@ proc getCommandLineParams(): string = return commandLineParams[3..^1].join(" ") task buildDesktop, "Build the desktop version": - selfExec fmt"c -o:ast{exe} -d:exposeScriptingApi --passC:-std=gnu11 {getCommandLineParams()} ./src/absytree.nim" - # selfExec fmt"c --passL:advapi32.lib -o:ast{exe} -d:exposeScriptingApi {getCommandLineParams()} ./src/absytree.nim" - # selfExec fmt"c -o:ast{exe} -d:exposeScriptingApi --objChecks:off --fieldChecks:off --rangeChecks:off --boundChecks:off --overflowChecks:off --floatChecks:off --nanChecks:off --infChecks:off {getCommandLineParams()} ./src/absytree.nim" + selfExec fmt"c -o:ast{exe} -d:exposeScriptingApi -d:nimWasmtimeBuild --passC:-std=gnu11 {getCommandLineParams()} ./src/absytree.nim" + # selfExec fmt"c --passL:advapi32.lib -o:ast{exe} -d:exposeScriptingApi -d:nimWasmtimeBuild {getCommandLineParams()} ./src/absytree.nim" + # selfExec fmt"c -o:ast{exe} -d:exposeScriptingApi -d:nimWasmtimeBuild --objChecks:off --fieldChecks:off --rangeChecks:off --boundChecks:off --overflowChecks:off --floatChecks:off --nanChecks:off --infChecks:off {getCommandLineParams()} ./src/absytree.nim" task buildTerminal, "Build the terminal version": selfExec fmt"c -o:ast{exe} -d:exposeScriptingApi -d:nimWasmtimeBuild -d:enableTerminal -d:enableGui=false --passC:-std=gnu11 {getCommandLineParams()} ./src/absytree.nim"