diff options
author | Josef Angstenberger <code@jtxa.de> | 2021-06-10 21:42:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-06-17 15:57:56 (GMT) |
commit | fe60154fe8efc7528da92f6b9a6b17a6f9d4a179 (patch) | |
tree | 58ee8040eb04c4e9be5017cc562c3adae0764ec4 /Help/guide/tutorial/Installing and Testing.rst | |
parent | 25dde20cc5df77326f369c2dbcca3edcf687e581 (diff) | |
download | CMake-fe60154fe8efc7528da92f6b9a6b17a6f9d4a179.zip CMake-fe60154fe8efc7528da92f6b9a6b17a6f9d4a179.tar.gz CMake-fe60154fe8efc7528da92f6b9a6b17a6f9d4a179.tar.bz2 |
Tutorial: Small formatting improvements
- Use inline literals for all code fragments and names.
- Add missing console code-blocks.
- Always use c++, not c as code language.
Diffstat (limited to 'Help/guide/tutorial/Installing and Testing.rst')
-rw-r--r-- | Help/guide/tutorial/Installing and Testing.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Help/guide/tutorial/Installing and Testing.rst b/Help/guide/tutorial/Installing and Testing.rst index 611749b..8bab454 100644 --- a/Help/guide/tutorial/Installing and Testing.rst +++ b/Help/guide/tutorial/Installing and Testing.rst @@ -6,8 +6,8 @@ Now we can start adding install rules and testing support to our project. Install Rules ------------- -The install rules are fairly simple: for MathFunctions we want to install the -library and header file and for the application we want to install the +The install rules are fairly simple: for ``MathFunctions`` we want to install +the library and header file and for the application we want to install the executable and configured header. So to the end of ``MathFunctions/CMakeLists.txt`` we add: |