diff options
author | Robert Maynard <robert.maynard@kitware.com> | 2020-06-16 19:38:57 (GMT) |
---|---|---|
committer | Robert Maynard <robert.maynard@kitware.com> | 2020-06-16 19:38:57 (GMT) |
commit | 0fdfd6bf37146e1b09e410ff5f729f9ea8d3ac1a (patch) | |
tree | 476eb80eba83856bf332e7cf9c325376bbab16b8 /Help/guide/tutorial/index.rst | |
parent | f2c1debe403c4e9929a6dc2b1b6f63a7f6b052cc (diff) | |
download | CMake-0fdfd6bf37146e1b09e410ff5f729f9ea8d3ac1a.zip CMake-0fdfd6bf37146e1b09e410ff5f729f9ea8d3ac1a.tar.gz CMake-0fdfd6bf37146e1b09e410ff5f729f9ea8d3ac1a.tar.bz2 |
Tutorial: Install correctly when built statically
When built statically we failed to install the SqrtLibrary
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 6e26de9..36dfbce 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: |