shoot.nimble 432 B

123456789101112131415161718192021222324
  1. # Package
  2. version = "0.2.0"
  3. author = "NerdRat"
  4. description = "A nicy replicant for the Bash shell."
  5. license = "GPL-3.0"
  6. srcDir = "src"
  7. installExt = @["nim"]
  8. bin = @["shoot"]
  9. # Dependencies
  10. requires "nim >= 1.0.6", "rainbow#43aa846"
  11. task clean, "Remove compiled files.":
  12. if fileExists(bin[0]):
  13. rmFile(bin[0])
  14. withDir("tests"):
  15. if fileExists("test1"):
  16. rmFile("test1")