12 lines
282 B
Nim
12 lines
282 B
Nim
task build, "build":
|
|
switch("outdir", "bin")
|
|
setCommand "c", "src/typstgen.nim"
|
|
|
|
task dev, "dev":
|
|
exec "nimble setup -l"
|
|
|
|
# begin Nimble config (version 2)
|
|
--noNimblePath
|
|
when withDir(thisDir(), system.fileExists("nimble.paths")):
|
|
include "nimble.paths"
|
|
# end Nimble config
|