diff options
author | Brad King <brad.king@kitware.com> | 2020-06-18 13:40:38 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-06-18 13:41:31 (GMT) |
commit | 3252bc447636b2345485704d646ce8739db12dfa (patch) | |
tree | 08eddf63540cd05ddab4f99d1b89684685ca158d /Help/guide/tutorial/index.rst | |
parent | d7541e80ed085811fc6180a124adfb5fe6fac519 (diff) | |
parent | 0fdfd6bf37146e1b09e410ff5f729f9ea8d3ac1a (diff) | |
download | CMake-3252bc447636b2345485704d646ce8739db12dfa.zip CMake-3252bc447636b2345485704d646ce8739db12dfa.tar.gz CMake-3252bc447636b2345485704d646ce8739db12dfa.tar.bz2 |
Merge topic 'tutorial_install_when_built_static'
0fdfd6bf37 Tutorial: Install correctly when built statically
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !4906
Diffstat (limited to 'Help/guide/tutorial/index.rst')
-rw-r--r-- | Help/guide/tutorial/index.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Help/guide/tutorial/index.rst b/Help/guide/tutorial/index.rst index eb81ee5..e7ea290 100644 --- a/Help/guide/tutorial/index.rst +++ b/Help/guide/tutorial/index.rst @@ -675,9 +675,9 @@ The first step is to update the starting section of the top-level Now that we have made MathFunctions always be used, we will need to update the logic of that library. So, in ``MathFunctions/CMakeLists.txt`` we need to -create a SqrtLibrary that will conditionally be built when ``USE_MYMATH`` is -enabled. Now, since this is a tutorial, we are going to explicitly require -that SqrtLibrary is built statically. +create a SqrtLibrary that will conditionally be built and installed when +``USE_MYMATH`` is enabled. Now, since this is a tutorial, we are going to +explicitly require that SqrtLibrary is built statically. The end result is that ``MathFunctions/CMakeLists.txt`` should look like: |