Skip to content

Latest commit

 

History

History
23 lines (14 loc) · 490 Bytes

README.md

File metadata and controls

23 lines (14 loc) · 490 Bytes

Quick Code Review: Cpp

Features:

Project Build & run

mkdir build && cd build
cmake ..
make -j$(nproc)

From the code above the $CMAKE_BUILD references the ./build folder inside your project.

To run the samples typing $CMAKE_BUILD/src/app/codewars/myCodeWars.app

To run the tests typing $CMAKE_BUILD/test/myapp_test