Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 432 Bytes

File metadata and controls

23 lines (15 loc) · 432 Bytes

C++ Kata Starter

A minimal C++ starter for coding katas: clone it, run the tests, start coding.

Prerequisites

A C++17 compiler and CMake 3.16 or newer. The first configure downloads GoogleTest, so it needs internet once.

Build and test

cmake -B build
cmake --build build
ctest --test-dir build

Run the app

./build/app

CLion and VS Code (CMake Tools) open the folder and run the test directly.