diff options
author | Markus Ferrell <markus.ferrell@kitware.com> | 2022-09-05 14:02:51 (GMT) |
---|---|---|
committer | Markus Ferrell <markus.ferrell@kitware.com> | 2022-09-05 14:03:06 (GMT) |
commit | 3241e3ef03bbf9d59af36615438c727d372fb42f (patch) | |
tree | 82945ea4e2aad7d2b32306ab8c4da30abeaa222a | |
parent | 9b1b9b9aae371acb9d18b481d45bcaec2d312e27 (diff) | |
download | CMake-3241e3ef03bbf9d59af36615438c727d372fb42f.zip CMake-3241e3ef03bbf9d59af36615438c727d372fb42f.tar.gz CMake-3241e3ef03bbf9d59af36615438c727d372fb42f.tar.bz2 |
Tutorial: Align step 12 prose with documentation
Fixes: #23918
-rw-r--r-- | Help/guide/tutorial/Packaging Debug and Release.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Help/guide/tutorial/Packaging Debug and Release.rst b/Help/guide/tutorial/Packaging Debug and Release.rst index e795be2..fc2050e 100644 --- a/Help/guide/tutorial/Packaging Debug and Release.rst +++ b/Help/guide/tutorial/Packaging Debug and Release.rst @@ -10,8 +10,8 @@ possible, however, to setup CPack to bundle multiple build directories and construct a package that contains multiple configurations of the same project. First, we want to ensure that the debug and release builds use different names -for the executables and libraries that will be installed. Let's use `d` as the -postfix for the debug executable and libraries. +for the libraries that will be installed. Let's use `d` as the +postfix for the debug libraries. Set :variable:`CMAKE_DEBUG_POSTFIX` near the beginning of the top-level ``CMakeLists.txt`` file: |