Skip to content

Latest commit

 

History

History
29 lines (22 loc) · 538 Bytes

README.md

File metadata and controls

29 lines (22 loc) · 538 Bytes

CBX

This project utilises the IDI CPP Template licensed under MIT.

Build Instructions

Requirements

  • CMake >= 3.14
  • GCC / Clang / MSVC (VS2019)

Make sure you have initialized submodules:

$ git submodule init
$ git submodule update

From root directory of project checkout run the following commands:

$ mkdir build
$ cd build
$ cmake ..
$ cmake --build .   # or generated build system command (make, Visual Studio etc.)

Run tests:

$ ctest -C Debug