${PROJECT_SUMMARY}
First, set up the build directory by running the following command in the project root:
meson setup build --prefix=/usrBuild ${PROJECT_NAME} (you need to run this in the project root):
meson compile -C buildTo install ${PROJECT_NAME} (you need to run this in the project root):
meson install -C buildAfter setting up the build directory, you will be able to run tests.
To run tests (you need to run this in the project root), run this command:
meson test -C buildBy default, documentation is built by default using valadoc
If you would not like to generate documentation for this project, pass the additional -Denable_valadoc=false flag to meson.
If you haven't created the build directory, in the project root run:
meson setup build --prefix=/usr -Denable_valadoc=falseHowever, if you have already created the build directory, you can run the following command from the project root.
meson configure -Denable_valadoc=false buildTo enable valadoc documentation generation again, perform the same commands again but replace false in -Denable_valadoc= with true.