diff options
author | David Robillard <d@drobilla.net> | 2021-03-10 20:10:11 -0500 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2021-03-10 20:10:11 -0500 |
commit | 50cd37781923957066856cd2252383ed75c4a9ba (patch) | |
tree | 68d39e10114f769be92a3e774c056b8552cc356d | |
parent | efe19ede5f5371fbece1c9283fc499f5f97eaaae (diff) | |
download | pugl-50cd37781923957066856cd2252383ed75c4a9ba.tar.gz pugl-50cd37781923957066856cd2252383ed75c4a9ba.tar.bz2 pugl-50cd37781923957066856cd2252383ed75c4a9ba.zip |
Update build commands in README
-rw-r--r-- | README.md | 15 |
1 files changed, 6 insertions, 9 deletions
@@ -53,16 +53,13 @@ The documentation can also be built from the source by configuring with `--docs` Testing ------- -There are a few unit tests included, but unfortunately manual testing is still -required. The tests and example programs will be built if you pass the -`--test` option when configuring: +Some unit tests are included, but unfortunately manual testing is still +required. The tests and example programs are built by default. You can run +all the tests at once via ninja: - ./waf configure --test - -Then, after building, the unit tests can be run: - - ./waf - ./waf test --gui-tests + meson setup build + cd build + ninja test The `examples` directory contains several programs that serve as both manual tests and demonstrations: |