hyprman/config.nims
2024-10-01 15:47:37 -05:00

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