Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 377 Bytes

File metadata and controls

23 lines (16 loc) · 377 Bytes

C++ template

A basic C++ project template with CMake and GoogleTest.

Usage

  1. Configure the project and generate the native build system:
$ cmake -B build
  1. Call the build system to compile and link the project
$ cmake --build build

The compiled executables will be placed in build/bin.

  1. Test the project
$ cd build && ctest