diff options
author | Brad King <brad.king@kitware.com> | 2023-07-27 14:11:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-07-27 14:15:11 (GMT) |
commit | 803a79dd693ea4001dc82b2646e93bcfa757cb81 (patch) | |
tree | 118288f7204c301066c66db89e79f7ae54057f04 /README.rst | |
parent | 054ed1c594e27cecee65d1681943d18ad66168f1 (diff) | |
download | CMake-803a79dd693ea4001dc82b2646e93bcfa757cb81.zip CMake-803a79dd693ea4001dc82b2646e93bcfa757cb81.tar.gz CMake-803a79dd693ea4001dc82b2646e93bcfa757cb81.tar.bz2 |
README: Update bootstrap example to use 'build' directory under source
When the example was first written, developers commonly placed their
build trees as siblings of the source tree. Nowadays many developers
use a `build/` directory under the top-level source directory instead.
Update the example with the modern convention to avoid requiring the
reader to understand that `cmake-source` is a placeholder for the path
to the source tree.
Diffstat (limited to 'README.rst')
-rw-r--r-- | README.rst | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -68,8 +68,8 @@ you can build directly in the source tree:: Or, if you plan to develop CMake or otherwise run the test suite, create a separate build tree:: - $ mkdir cmake-build && cd cmake-build - $ ../cmake-source/bootstrap && make + $ mkdir build && cd build + $ ../bootstrap && make Windows ^^^^^^^ |