Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 407 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 407 Bytes

Boilerplate to practice katas using C++ and GoogleTest

Setup CMake project

cmake -S . -B build

Build

cmake --build build

Run tests

cd build && ctest -V

VSCode integration

  • Install CMake Tools extension.
  • In the bottom bar, there is the configured "Build" and "Run" commands (Build [all] and Run CTest)
  • Click the run button (arrow like a "play" button).