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: |
| 55 | The 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 | {{{ |
| 57 | ccmake <path-to-build> |
| 58 | }}} |
| 59 | The 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: |