mirror of https://github.com/status-im/NimYAML.git
40 lines
895 B
Nim
40 lines
895 B
Nim
task build, "Compile the YAML module into a library":
|
|
--app:lib
|
|
--d:release
|
|
setCommand "c", "yaml"
|
|
|
|
task tests, "Run all tests":
|
|
--r
|
|
--verbosity:0
|
|
setCommand "c", "test/tests"
|
|
|
|
task lexerTests, "Run lexer tests":
|
|
--r
|
|
--verbosity:0
|
|
setCommand "c", "test/lexing"
|
|
|
|
task parserTests, "Run parser tests":
|
|
--r
|
|
--verbosity:0
|
|
setCommand "c", "test/parsing"
|
|
|
|
task serializationTests, "Run serialization tests":
|
|
--r
|
|
--verbosity:0
|
|
setCommand "c", "test/serializing"
|
|
|
|
task doc, "Generate documentation":
|
|
setCommand "doc2", "yaml"
|
|
|
|
task bench, "Benchmarking":
|
|
--d:release
|
|
--r
|
|
setCommand "c", "bench/json"
|
|
|
|
task clean, "Remove all generated files":
|
|
exec "rm -f yaml.html libyaml.* test/tests test/parsing test/lexing"
|
|
setCommand "nop"
|
|
|
|
task server, "Compile server daemon":
|
|
--d:release
|
|
setCommand "c", "server/server" |