/modern_cpp_template

Everything "C++14"

Primary LanguageMakefile

C++ Application Template

  • Logging included (loguru)
  • GSL already included
  • Testing included (Catch)
  • Makefile
  • C++14 (To some extend)

Usage

Build the main application (Specified in src/Makefile)

$ make app

Build the tests (Specified in tests/Makefile)

$ make tests

Run all the tests

$ make run_tests

Delete all compiled files

$ make clean