mpuccio / cpd-exam-code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Compile using CMake

Create the build directory and enter there:

$ mkdir build && cd build

configure with ICC

$ cmake .. -DCMAKE_CXX_COMPILER=icc -DCMAKE_C_COMPILER=icc

configure with system default compiler

$ cmake .. 

Enable debug mode in CMake:

$ cmake -DCMAKE_BUILD_TYPE=Debug ..

now you should be able to compile using make.

About


Languages

Language:C++ 97.9%Language:C 1.6%Language:CMake 0.4%