17 lines
339 B
Nim
17 lines
339 B
Nim
# Package
|
|
|
|
version = "0.2.1"
|
|
author = "genotrance"
|
|
description = "c2nim helper to simplify and automate the wrapping of C libraries"
|
|
license = "MIT"
|
|
|
|
skipDirs = @["tests"]
|
|
|
|
# Dependencies
|
|
|
|
requires "nim >= 0.17.2", "c2nim >= 0.9.13"
|
|
|
|
bin = @["nimgen"]
|
|
|
|
task test, "Test nimgen":
|
|
exec "nim e tests/nimgentest.nims"
|