This is an example project showing how to import libbase in a CMake project
using CMake's FetchContent.
For simplicity only core library is added to avoid manually resolving many dependencies required for non-core modules.
For more details refer to libbase documentation.
To build this project simply clone it and build with CMake:
$ git clone https://github.com/RippeR37/libbase-example-fetchcontent
$ cd libbase-example-fetchcontent
$ cmake -S . -B build
$ cmake --build build
$ ./build/libbase-example-fetchcontent
Hello World!This project is licensed under the MIT License.