A basic C++ project template with CMake and GoogleTest.
- Configure the project and generate the native build system:
$ cmake -B build
- Call the build system to compile and link the project
$ cmake --build build
The compiled executables will be placed in build/bin.
- Test the project
$ cd build && ctest