/cpp_boilerplate

Basic c++ boilerplate

Primary LanguageCMake

About

This repo contains a cpp boilerplate ready to use with catch2 unitesting framework. It uses Cmake which is managed with a Makefile.

How to use

Build the project and run the program :

make
cd build
./helloWorld.out

Run unitests :

make test

Clean everything :

make clean

CI

macOS ubuntu

Links

https://github.com/catchorg/Catch2