diff options
author | David Robillard <d@drobilla.net> | 2020-04-04 08:40:22 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-04-04 08:40:22 +0200 |
commit | a17e87f3a85f081fdfaef0c9d5f076cbaae8b653 (patch) | |
tree | 957623afe850f91d8846262f3388a1bf829281c1 /README.md | |
parent | 841b9705f10c9dc9a5b3c60da4a590863e18e5b4 (diff) | |
download | pugl-a17e87f3a85f081fdfaef0c9d5f076cbaae8b653.tar.gz pugl-a17e87f3a85f081fdfaef0c9d5f076cbaae8b653.tar.bz2 pugl-a17e87f3a85f081fdfaef0c9d5f076cbaae8b653.zip |
Update README
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 14 |
1 files changed, 12 insertions, 2 deletions
@@ -70,8 +70,16 @@ developers can build portable plugin binaries. Testing ------- -There are a few unit tests included which can be run with `python waf test ---gui-tests`, but unfortunately manual testing is still required. +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: + + ./waf configure --test + +Then, after building, the unit tests can be run: + + ./waf + ./waf test --gui-tests Several example programs are included that serve as both manual tests and demonstrations: @@ -94,6 +102,8 @@ demonstrations: * `pugl_print_events` is a utility that prints all received events to the console in a human readable format. + * `pugl_cxx_demo` is a simple cube demo that uses the C++ API. + All example programs support several command line options to control various behaviours, see the output of `--help` for details. Please file an issue if any of these programs do not work as expected on your system. |