mirror of
1
0
Fork 0

Merge branch 'fix-building-project-typo' into 'master'

Fix minor typo in 'Running CMake > Building a project' section

See merge request CLIUtils/modern-cmake!49
This commit is contained in:
Henry Schreiner 2021-03-17 04:52:08 +00:00
commit 0729121fc8
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ Any *one* of these commands will install:
~/package $ cmake --install build # CMake 3.15+ only
{% endterm %}
So set of methods should you use? As long as you *do not forget* to type the build directory as the argument, staying out of the build directory is shorter, and making source changes is easier from the source directory. You should try to get used to using `--build`, as that will free you from using only `make` to build. Note that working from the build directory is historically much more common, and some tools and commands (including CTest) still require running from the build directory.
So which set of methods should you use? As long as you *do not forget* to type the build directory as the argument, staying out of the build directory is shorter, and making source changes is easier from the source directory. You should try to get used to using `--build`, as that will free you from using only `make` to build. Note that working from the build directory is historically much more common, and some tools and commands (including CTest) still require running from the build directory.
Just to clarify, you can point CMake at either the source directory *from the build directory*, or at an *existing* build directory from anywhere.