diff --git a/nakefile.nim b/nakefile.nim deleted file mode 100644 index 43a373f..0000000 --- a/nakefile.nim +++ /dev/null @@ -1,8 +0,0 @@ -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") diff --git a/nimbase.nimble b/nimbase.nimble new file mode 100644 index 0000000..1de096e --- /dev/null +++ b/nimbase.nimble @@ -0,0 +1,9 @@ +packageName = "nimbase" +version = "0.0.1" +author = "joachimschmidt557" +description = "Basic utilities written in Nim" +license = "Unlicense" + +requires "nim >= 0.19.0" +requires "cligen >= 0.9.19" +bin = @["add", "false", "seq", "sleep", "true"]