nimble/nimble.nimble
Dominik Picheta a7913b5d23 Improves tester.
2016-12-15 23:35:09 +01:00

24 lines
563 B
Nim

when fileExists("src/nimblepkg/common.nim"):
# In the git repository the Nimble sources are in a ``src`` directory.
import src/nimblepkg/common
else:
# When the package is installed, the ``src`` directory disappears.
import nimblepkg/common
# Package
version = nimbleVersion
author = "Dominik Picheta"
description = "Nim package manager."
license = "BSD"
bin = @["nimble"]
srcDir = "src"
# Dependencies
requires "nim >= 0.13.0", "compiler#head"
task test, "Run the Nimble tester!":
withDir "tests":
exec "nim c -r tester"