From 5e3d12ba46a399133fb938e5460bc8c4ae3e1451 Mon Sep 17 00:00:00 2001 From: treeform Date: Mon, 6 Sep 2021 11:25:34 -0700 Subject: [PATCH] Fix typo. --- pixie.nimble | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pixie.nimble b/pixie.nimble index 081bbc6..6024614 100644 --- a/pixie.nimble +++ b/pixie.nimble @@ -19,7 +19,7 @@ task docs, "Generate API documents": task bindings, "Generate bindings": proc compile(libName: string, flags = "") = - exec "nim c -f " & flags & " -d:release --app:lib --gc:arc --tlsEmulation:off --out:" & libName & ".arm --outdir:bindings/generated bindings/bindings.nim" + exec "nim c -f " & flags & " -d:release --app:lib --gc:arc --tlsEmulation:off --out:" & libName & " --outdir:bindings/generated bindings/bindings.nim" when defined(windows): compile "pixie.dll"