Merge branch 'doc-CMAKE_FIND_PACKAGE_NAME' into release

This commit is contained in:
Brad King 2015-01-12 09:01:10 -05:00
commit f3ad57d25e
3 changed files with 9 additions and 0 deletions

View File

@ -312,6 +312,8 @@ When loading a find module or package configuration file ``find_package``
defines variables to provide information about the call arguments (and
restores their original state before returning):
``CMAKE_FIND_PACKAGE_NAME``
the ``<package>`` name which is searched for
``<package>_FIND_REQUIRED``
true if ``REQUIRED`` option was given
``<package>_FIND_QUIETLY``

View File

@ -36,6 +36,7 @@ Variables that Provide Information
/variable/CMAKE_EXECUTABLE_SUFFIX
/variable/CMAKE_EXTRA_GENERATOR
/variable/CMAKE_EXTRA_SHARED_LIBRARY_SUFFIXES
/variable/CMAKE_FIND_PACKAGE_NAME
/variable/CMAKE_GENERATOR
/variable/CMAKE_GENERATOR_PLATFORM
/variable/CMAKE_GENERATOR_TOOLSET

View File

@ -0,0 +1,6 @@
CMAKE_FIND_PACKAGE_NAME
-----------------------
Defined by the :command:`find_package` command while loading
a find module to record the caller-specified package name.
See command documentation for details.