Skip to content

Latest commit

 

History

History
14 lines (10 loc) · 553 Bytes

File metadata and controls

14 lines (10 loc) · 553 Bytes

Roman Numerals

Travis-CI Build Status

Building the New Way (cmake)

mkdir -pv build
cmake -B build
cmake --build build
ctest --test-dir build

You can build with different (non-default) compilers by prefixing the first cmake line to set some environment variables, e.g. env CC=clang CXX=clang cmake -B build. These environment variables will not be required in the build step, as they are encoded into the generated files.