File: docopt.nimble

package info (click to toggle)
nim-docopt 0.7.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 176 kB
  • sloc: sh: 23; makefile: 13
file content (13 lines) | stat: -rw-r--r-- 376 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
version = "0.7.1"
author = "Oleh Prypin"
description = "Command line option parser that will make you smile"
license = "MIT"
srcDir = "src"

requires "nim >= 0.20.0"
requires "regex >= 0.11.1"

task test, "Test":
  exec "nimble c --verbosity:0 -r -y test/test"
  for f in listFiles("examples"):
    if f[^4..^1] == ".nim": exec "nimble compile --verbosity:0 --hints:off " & f