Changes between Version 3 and Version 4 of CMakeBuildConfiguration


Ignore:
Timestamp:
May 24, 2008, 2:45:21 PM (14 years ago)
Author:
Douglas Gregor
Comment:

Address some comments from Larry Evans

Legend:

Unmodified
Added
Removed
Modified
  • CMakeBuildConfiguration

    v3 v4  
    55ccmake <path-to-source>
    66}}}
    7 or
    8 {{{
    9 ccmake <path-to-build>
    10 }}}
    11 and you are presented with a list of editable build options something like this:
     7where `ccmake` will be in CMake's binary directory.
     8You will be presented with a list of editable build options something like this:
    129{{{
    1310 BUILD_BOOST_DATE_TIME            ON                                                       
     
    5653== CMakeCache.txt ==
    5754
    58 The same information is stored in a file `CMakeCache.txt` located in the build directory.  This is what `ccmake` reads if it is started pointing to a build directory.  This file is hand-editable, though this is usually not as convenient as the cmake-supplied configuration tools mentioned above.  An excerpt of this file:
     55The same information is stored in a file `CMakeCache.txt` located in the build directory.  For this reason, you can invoke `ccmake` and provide the build directory rather than the source directory, e.g.,
     56{{{
     57ccmake <path-to-build>
     58}}}
     59The CMakeLists.txt file is hand-editable, though this is usually not as convenient as the cmake-supplied configuration tools mentioned above.  An excerpt of this file:
    5960{{{
    6061//