16 lines
384 B
Nim
16 lines
384 B
Nim
|
|
# useful while hwylterm is tracking HEAD
|
|
task update, "update deps":
|
|
rmFile "nimble.lock"
|
|
rmDir "nimbledeps"
|
|
exec "nimble lock -l"
|
|
exec "nimble setup -l"
|
|
|
|
task build, "build":
|
|
selfExec "c --outdir:bin src/hyprman.nim"
|
|
|
|
# begin Nimble config (version 2)
|
|
--noNimblePath
|
|
when withDir(thisDir(), system.fileExists("nimble.paths")):
|
|
include "nimble.paths"
|
|
# end Nimble config
|