Table of Contents

CMake survivor guide

Building out of tree

  mkdir build
  cd build
  cmake ..
  cd build
  ccmake ..

Building in the tree

  cmake .
  ccmake .

Verbose Output for make

  make VERBOSE=1