1
0
mirror of synced 2024-06-04 19:58:02 +02:00

Merge branch 'patch-1' into 'master'

Corrected current directories in install examples (running.md)

See merge request CLIUtils/modern-cmake!21
This commit is contained in:
Henry Schreiner 2019-08-30 11:48:16 +00:00
commit ae2c553629

View File

@ -25,9 +25,9 @@ Any *one* of these commands will install:
{% term %} {% term %}
# From the build directory (pick one) # From the build directory (pick one)
~/package $ make install ~/package/build $ make install
~/package $ cmake --build . --target install ~/package/build $ cmake --build . --target install
~/package $ cmake --install . # CMake 3.15+ only ~/package/build $ cmake --install . # CMake 3.15+ only
# From the source directory (pick one) # From the source directory (pick one)
~/package $ cmake --build build --target install ~/package $ cmake --build build --target install