add nimble tasks

This commit is contained in:
Rasmus Moorats 2022-08-15 13:31:07 +03:00
parent 44421f44bc
commit d4a2b13584
Signed by: xx
GPG key ID: FE14255A6AE7241C
3 changed files with 16 additions and 2 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
bin/

View file

@ -1,7 +1,7 @@
import std/parseopt
import system
import swayipc
import swayipc/[commands, util]
import swayipc2
import swayipc2/[commands, util]
const helpText = """swick - quickly launch or focus/unfocus application

View file

@ -9,3 +9,16 @@ bin = @["swick"]
# Dependencies
requires "nim >= 1.6.6"
requires "swayipc2 >= 0.1.0"
let outdir = "bin/"
let output = outdir & "swick"
task release, "build binary for release":
exec "mkdir -p " & outdir
exec "nim c -d:release --opt:speed --mm:arc --passC:-ffast-math -o:" & output & " src/swick.nim"
exec "strip " & output
echo "built " & output
task clean, "clean workspace":
exec "rm " & output
exec "rm -r " & outdir