mirror of
https://github.com/status-im/NimYAML.git
synced 2025-01-12 04:24:16 +00:00
238faf82ab
* moved src/* to . * added config.nims to build library and run tests * reduced compiler warnings
16 lines
425 B
Nim
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"
|