NimYAML/config.nims
Felix Krause 238faf82ab Source restructuring, added config.nims
* moved src/* to .
 * added config.nims to build library and run tests
 * reduced compiler warnings
2015-12-28 22:03:16 +01:00

16 lines
425 B
Nim

task build, "Compile the YAML module into a library":
exec "nim c --app:lib -d:release yaml"
setCommand "nop"
task tests, "Run all tests":
exec "nim c -r --verbosity:0 test/tests"
setCommand "nop"
task lexerTests, "Run lexer tests":
exec "nim c -r --verbosity:0 test/lexing"
setCommand "nop"
task parserTests, "Run parser tests":
exec "nim c --verbosity:0 -r test/parsing"
setCommand "nop"