A Vala HTTP Client Library designed to streamline the experience of making http requests in your Vala programs
First, set up the build directory by running the following command in the project root:
meson setup build --prefix=/usrBuild snack (you need to run this in the project root):
meson compile -C buildTo install snack (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.
Project generated using vala-lib-starter-kit template via valdo