nimbase/nakefile.nim
joachimschmidt557 7779e36f86 Initial files
2019-03-07 14:10:32 +01:00

8 lines
263 B
Nim

import nake
task "compile", "Compile nimbase":
discard shell(nimExe, "c", "true.nim")
discard shell(nimExe, "c", "false.nim")
discard shell(nimExe, "c", "sleep.nim")
discard shell(nimExe, "c", "seq.nim")
discard shell(nimExe, "c", "add.nim")