No more nake, use nimble

This commit is contained in:
joachimschmidt557 2019-03-07 14:36:13 +01:00
parent 8721014963
commit dcfdb290f7
2 changed files with 9 additions and 8 deletions

View file

@ -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")

9
nimbase.nimble Normal file
View file

@ -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"]