diff options
author | Dominik Picheta <dominikpicheta@googlemail.com> | 2015-01-16 21:47:26 +0000 |
---|---|---|
committer | Dominik Picheta <dominikpicheta@googlemail.com> | 2015-01-16 21:47:26 +0000 |
commit | 03eb11d2c8db7c05c398a6c62489d8154fa2188a (patch) | |
tree | 3b1c7c6ca4f3ee68b872ef71f9223a1f62d24bf8 | |
parent | c7934be7e845a01275d4e1ede5515ef5f98cc2c2 (diff) | |
download | Nim-03eb11d2c8db7c05c398a6c62489d8154fa2188a.tar.gz |
Add compiler.nimble file.
-rw-r--r-- | compiler.nimble | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/compiler.nimble b/compiler.nimble new file mode 100644 index 000000000..52eb4083b --- /dev/null +++ b/compiler.nimble @@ -0,0 +1,11 @@ +[Package] +name = "compiler" +version = "0.10.3" +author = "Andreas Rumpf" +description = "Compiler package providing the compiler sources as a library." +license = "MIT" + +InstallDirs = "doc, compiler" + +[Deps] +Requires: "nim >= 0.10.3" |