Accueil
 

CMake survivor guide

Building out of tree

  • to configure your source tree:
  mkdir build
  cd build
  cmake ..
  • to edit configuration and generate the makefile:
  cd build
  ccmake ..

Building in the tree

  • to configure your source tree:
  cmake .
  • to edit configuration and generate the makefile:
  ccmake .

Verbose Output for make

  • to get verbose output:
  make VERBOSE=1
 
cmake.txt · Last modified: 2008/03/05 17:57 by ctaf
 
Recent changes RSS feed Creative Commons License Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki