An example project that builds and links against BeastQuest. This example will simply perform a GET request on the provided URL and print out the response body, like so:
./http_client https://httpbin.org/get
This should be a good start for testing out the library and its build process. Feel free to fork this repository!
This project uses CMake and Git submodules. First initialize the BeastQuest submodule:
git submodule update --init
Next, build using CMake:
mkdir build
cd build
cmake ..
make
Documentation for BeastQuest is located here and includes in-depth information on building and usage. It will continue to be updated and improved.