diff options
author | Jean-Christophe Fillion-Robin <jchris.fillionr@kitware.com> | 2018-08-11 00:13:53 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2018-08-14 10:54:56 (GMT) |
commit | 30d08bdce92960caa3fc68a3de95fffdf569e97b (patch) | |
tree | 64dae4ded21f9a60a29c8070ead620f35136d3e2 /Help/manual/cmake-developer.7.rst | |
parent | eba2b13a835000a614f21a1205a598462a4f8843 (diff) | |
download | CMake-30d08bdce92960caa3fc68a3de95fffdf569e97b.zip CMake-30d08bdce92960caa3fc68a3de95fffdf569e97b.tar.gz CMake-30d08bdce92960caa3fc68a3de95fffdf569e97b.tar.bz2 |
doc: Consistently use <PackageName> for describing the name of a package
Diffstat (limited to 'Help/manual/cmake-developer.7.rst')
-rw-r--r-- | Help/manual/cmake-developer.7.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Help/manual/cmake-developer.7.rst b/Help/manual/cmake-developer.7.rst index 32e8cfc..f05c4b1 100644 --- a/Help/manual/cmake-developer.7.rst +++ b/Help/manual/cmake-developer.7.rst @@ -579,11 +579,11 @@ file and the ``Help/manual/cmake-modules.7.rst`` toctree entry. Find Modules ------------ -A "find module" is a ``Modules/Find<package>.cmake`` file to be loaded -by the :command:`find_package` command when invoked for ``<package>``. +A "find module" is a ``Modules/Find<PackageName>.cmake`` file to be loaded +by the :command:`find_package` command when invoked for ``<PackageName>``. The primary task of a find module is to determine whether a package -exists on the system, set the ``<package>_FOUND`` variable to reflect +exists on the system, set the ``<PackageName>_FOUND`` variable to reflect this and provide any variables, macros and imported targets required to use the package. A find module is useful in cases where an upstream library does not provide a |