diff options
author | Joseph Snyder <joe.snyder@kitware.com> | 2021-09-30 17:06:20 (GMT) |
---|---|---|
committer | Joseph Snyder <joe.snyder@kitware.com> | 2021-09-30 17:06:20 (GMT) |
commit | 1bf25b5b5fe2b1c9c9667984c3cd0408244942a9 (patch) | |
tree | 9c731e5261b22330019be3303d58ed641cfae1d9 /Help/guide/tutorial | |
parent | 89d134c61d4cc78bfb9585c80144ce2acae14cfa (diff) | |
download | CMake-1bf25b5b5fe2b1c9c9667984c3cd0408244942a9.zip CMake-1bf25b5b5fe2b1c9c9667984c3cd0408244942a9.tar.gz CMake-1bf25b5b5fe2b1c9c9667984c3cd0408244942a9.tar.bz2 |
Tutorial: Remove information about EXPORT keyword
Remove the text that implies that the EXPORT keyword will also install
the generated CMake file.
Diffstat (limited to 'Help/guide/tutorial')
-rw-r--r-- | Help/guide/tutorial/Adding Export Configuration.rst | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Help/guide/tutorial/Adding Export Configuration.rst b/Help/guide/tutorial/Adding Export Configuration.rst index e5ab6a2..b54c154 100644 --- a/Help/guide/tutorial/Adding Export Configuration.rst +++ b/Help/guide/tutorial/Adding Export Configuration.rst @@ -12,10 +12,10 @@ packaged. The first step is to update our :command:`install(TARGETS)` commands to not only specify a ``DESTINATION`` but also an ``EXPORT``. The ``EXPORT`` keyword -generates and installs a CMake file containing code to import all targets -listed in the install command from the installation tree. So let's go ahead and -explicitly ``EXPORT`` the ``MathFunctions`` library by updating the ``install`` -command in ``MathFunctions/CMakeLists.txt`` to look like: +generates a CMake file containing code to import all targets listed in the +install command from the installation tree. So let's go ahead and explicitly +``EXPORT`` the ``MathFunctions`` library by updating the ``install`` command +in ``MathFunctions/CMakeLists.txt`` to look like: .. literalinclude:: Complete/MathFunctions/CMakeLists.txt :caption: MathFunctions/CMakeLists.txt |