Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 353 Bytes

cmake_make.md

File metadata and controls

17 lines (13 loc) · 353 Bytes

Using CMake + Make

Instructions for DEBUG build

mkdir -p build/debug
cd build/debug
cmake -DCMAKE_BUILD_TYPE=DEBUG ../../src
make

Instructions for RELEASE build

mkdir -p build/release
cd build/release
cmake -DCMAKE_BUILD_TYPE=RELEASE ../../src
make