2015-12-28 21:03:16 +00:00
|
|
|
task build, "Compile the YAML module into a library":
|
2015-12-28 21:13:14 +00:00
|
|
|
--app:lib
|
|
|
|
--d:release
|
|
|
|
setCommand "c", "yaml"
|
2015-12-28 21:03:16 +00:00
|
|
|
|
|
|
|
task tests, "Run all tests":
|
2015-12-28 21:13:14 +00:00
|
|
|
--r
|
|
|
|
--verbosity:0
|
|
|
|
setCommand "c", "test/tests"
|
2015-12-28 21:03:16 +00:00
|
|
|
|
|
|
|
task lexerTests, "Run lexer tests":
|
2015-12-28 21:13:14 +00:00
|
|
|
--r
|
|
|
|
--verbosity:0
|
|
|
|
setCommand "c", "test/lexing"
|
2015-12-28 21:03:16 +00:00
|
|
|
|
|
|
|
task parserTests, "Run parser tests":
|
2015-12-28 21:13:14 +00:00
|
|
|
--r
|
|
|
|
--verbosity:0
|
|
|
|
setCommand "c", "test/parsing"
|
2015-12-29 14:09:37 +00:00
|
|
|
|
|
|
|
task serializationTests, "Run serialization tests":
|
|
|
|
--r
|
|
|
|
--verbosity:0
|
|
|
|
setCommand "c", "test/serializing"
|
|
|
|
|
2016-01-13 21:43:12 +00:00
|
|
|
task documentation, "Generate documentation":
|
|
|
|
exec "mkdir -p docout"
|
|
|
|
exec r"nim doc2 -o:docout/yaml.html yaml"
|
|
|
|
exec r"nim doc2 -o:docout/serialization.html yaml/serialization.nim"
|
|
|
|
exec r"nim rst2html -o:docout/index.html doc/index.txt"
|
|
|
|
exec "cp doc/docutils.css doc/style.css doc/testing.html docout"
|
|
|
|
setCommand "nop"
|
2015-12-28 21:13:14 +00:00
|
|
|
|
2015-12-28 23:14:47 +00:00
|
|
|
task bench, "Benchmarking":
|
|
|
|
--d:release
|
|
|
|
--r
|
2016-01-24 11:28:14 +00:00
|
|
|
--w:off
|
|
|
|
--hints:off
|
2015-12-28 23:14:47 +00:00
|
|
|
setCommand "c", "bench/json"
|
|
|
|
|
2015-12-28 21:13:14 +00:00
|
|
|
task clean, "Remove all generated files":
|
2016-01-13 21:43:12 +00:00
|
|
|
exec "rm -f libyaml.* test/tests test/parsing test/lexing docout"
|
2016-01-05 20:34:07 +00:00
|
|
|
setCommand "nop"
|
|
|
|
|
|
|
|
task server, "Compile server daemon":
|
|
|
|
--d:release
|
|
|
|
setCommand "c", "server/server"
|