diff --git a/Help/guide/tutorial/Installation Commands and Concepts.rst b/Help/guide/tutorial/Installation Commands and Concepts.rst index 914b65b8a4..bc78718e64 100644 --- a/Help/guide/tutorial/Installation Commands and Concepts.rst +++ b/Help/guide/tutorial/Installation Commands and Concepts.rst @@ -187,6 +187,14 @@ No special configuration is needed, configure and build as usual. We can verify the installation is correct with :option:`cmake --install`. +.. note:: + + As with CTest, when using a multi-config generator such as Visual Studio, it + will be necessary to specify a configuration like ``Debug`` or ``Release`` + using :option:`cmake --install --config `. + This is true whenever using a multi-config generator, and won't be called out + specifically in future commands. + .. code-block:: console cmake --install build --prefix install @@ -352,15 +360,6 @@ The build command is sufficient to reconfigure the project. We can verify the installation is correct with :option:`cmake --install`. -.. note:: - - As with CTest, when using multi-config generator, eg Visual Studio, it will be - necessary to specify a configuration with - ``cmake --install --config ``, where - ```` is a value like ``Debug`` or ``Release``. This is true whenever - using a multi-config generator, and won't be called out specifically in - future commands. - .. code-block:: console cmake --install build --prefix install diff --git a/Help/guide/tutorial/Testing and CTest.rst b/Help/guide/tutorial/Testing and CTest.rst index 360b3838de..df4ffdc71a 100644 --- a/Help/guide/tutorial/Testing and CTest.rst +++ b/Help/guide/tutorial/Testing and CTest.rst @@ -117,11 +117,10 @@ Verify all the tests pass with CTest. .. note:: - If using a multi-config generator, eg Visual Studio, it will be necessary to - specify a configuration with ``ctest -C ``, where - ```` is a value like ``Debug`` or ``Release``. This is true whenever - using a multi-config generator, and won't be called out specifically in - future commands. + When using a multi-config generator such as Visual Studio, it + will be necessary to specify a configuration like ``Debug`` or ``Release`` + using :option:`ctest -C`. This is true whenever using a multi-config + generator, and won't be called out specifically in future commands. .. code-block:: console