nimgenEx/nimgen.nimble
Ganesh Viswanathan a02cbbeeba - Support for C++ wrapping
- Fix module naming
- Remove file caching
- Fix bug that was deleting .nim file
- Add test case
2017-11-13 16:42:56 -06:00

17 lines
339 B
Nim

# Package
version = "0.1.0"
author = "genotrance"
description = "c2nim helper to simpilfy and automate the wrapping of C libraries"
license = "MIT"
skipDirs = @["tests"]
# Dependencies
requires "nim >= 0.16.0", "c2nim >= 0.9.13"
bin = @["nimgen"]
task test, "Test nimgen":
exec "nim e tests/nimgentest.nims"