nim-libnx/libnx.nimble
Joey Yakimowich-Payne e0e70d16f3 Add files to make libnx
2018-06-19 20:01:43 +09:00

20 lines
394 B
Nim

# Package
version = "0.1.0"
author = "Joey Payne"
description = "Nintendo Switch library libnx for Nim."
license = "MIT"
srcDir = "src"
# Deps
requires "nim >= 0.18.0", "https://github.com/jyapayne/nimgenEx@#head"
task setup, "Download and generate":
exec "nimgen libnxGen.cfg"
before install:
setupTask()
task test, "Run tests":
exec "nim c -r tests/test.nim"