====== CMake survivor guide ======
===== Building out of tree =====
  * to configure your source tree:
<code>
  mkdir build
  cd build
  cmake ..
</code>

  * to edit configuration and generate the makefile:
<code>
  cd build
  ccmake ..
</code>

===== Building in the tree =====
  * to configure your source tree:
<code>
  cmake .
</code>

  * to edit configuration and generate the makefile:
<code>
  ccmake .
</code>

===== Verbose Output for make =====
  * to get verbose output:
<code>
  make VERBOSE=1
</code>