mirror of https://github.com/status-im/NimYAML.git
50 lines
1.5 KiB
Nim
50 lines
1.5 KiB
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 yamlTestSuite, "Run YAML 1.2 test suite":
|
|
--r
|
|
--verbosity:0
|
|
setCommand "c", "test/yamlTestSuite"
|
|
|
|
task serializationTests, "Run serialization tests":
|
|
--r
|
|
--verbosity:0
|
|
setCommand "c", "test/serializing"
|
|
|
|
task documentation, "Generate documentation":
|
|
exec "mkdir -p docout"
|
|
exec r"nim doc2 -o:docout/yaml.html --docSeeSrcUrl:https://github.com/flyx/NimYAML/blob/`git log -n 1 --format=%H` yaml"
|
|
# bash! ah-ah \\ savior of the universe
|
|
for file in listFiles("yaml"):
|
|
let packageName = file[5..^5]
|
|
exec r"nim doc2 -o:docout/yaml." & packageName &
|
|
".html --docSeeSrcUrl:https://github.com/flyx/NimYAML/blob/yaml/`git log -n 1 --format=%H` " &
|
|
file
|
|
exec r"nim rst2html -o:docout/index.html doc/index.txt"
|
|
exec r"nim rst2html -o:docout/api.html doc/api.txt"
|
|
exec r"nim rst2html -o:docout/serialization.html doc/serialization.txt"
|
|
exec "cp doc/docutils.css doc/style.css doc/testing.html doc/processing.svg docout"
|
|
setCommand "nop"
|
|
|
|
task bench, "Benchmarking":
|
|
--r
|
|
--w:off
|
|
--hints:off
|
|
--d:release
|
|
setCommand "c", "bench/bench"
|
|
|
|
task clean, "Remove all generated files":
|
|
exec "rm -rf libyaml.* test/tests test/parsing test/lexing bench/json docout"
|
|
setCommand "nop"
|
|
|
|
task server, "Compile server daemon":
|
|
--d:release
|
|
setCommand "c", "server/server"
|