find_package.rst 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961
  1. find_package
  2. ------------
  3. .. |FIND_XXX| replace:: find_package
  4. .. |FIND_ARGS_XXX| replace:: <PackageName>
  5. .. |FIND_XXX_REGISTRY_VIEW_DEFAULT| replace:: ``TARGET``
  6. .. |CMAKE_FIND_ROOT_PATH_MODE_XXX| replace::
  7. :variable:`CMAKE_FIND_ROOT_PATH_MODE_PACKAGE`
  8. .. only:: html
  9. .. contents::
  10. .. note:: The :guide:`Using Dependencies Guide` provides a high-level
  11. introduction to this general topic. It provides a broader overview of
  12. where the ``find_package()`` command fits into the bigger picture,
  13. including its relationship to the :module:`FetchContent` module.
  14. The guide is recommended pre-reading before moving on to the details below.
  15. Find a package (usually provided by something external to the project),
  16. and load its package-specific details. Calls to this command can also
  17. be intercepted by :ref:`dependency providers <dependency_providers>`.
  18. Typical Usage
  19. ^^^^^^^^^^^^^
  20. Most calls to ``find_package()`` typically have the following form:
  21. .. code-block:: cmake
  22. find_package(<PackageName> [<version>] [REQUIRED] [COMPONENTS <components>...])
  23. The ``<PackageName>`` is the only mandatory argument. The ``<version>`` is
  24. often omitted, and ``REQUIRED`` should be given if the project cannot be
  25. configured successfully without the package. Some more complicated packages
  26. support components which can be selected with the ``COMPONENTS`` keyword, but
  27. most packages don't have that level of complexity.
  28. The above is a reduced form of the `basic signature`_. Where possible,
  29. projects should find packages using this form. This reduces complexity and
  30. maximizes the ways in which the package can be found or provided.
  31. Understanding the `basic signature`_ should be enough for general usage of
  32. ``find_package()``. Project maintainers who intend to provide a package
  33. configuration file should understand the bigger picture, as explained in
  34. :ref:`Full Signature` and all subsequent sections on this page.
  35. Search Modes
  36. ^^^^^^^^^^^^
  37. The command has a few modes by which it searches for packages:
  38. **Module mode**
  39. In this mode, CMake searches for a file called ``Find<PackageName>.cmake``,
  40. looking first in the locations listed in the :variable:`CMAKE_MODULE_PATH`,
  41. then among the :ref:`Find Modules` provided by the CMake installation.
  42. If the file is found, it is read and processed by CMake. It is responsible
  43. for finding the package, checking the version, and producing any needed
  44. messages. Some Find modules provide limited or no support for versioning;
  45. check the Find module's documentation.
  46. The ``Find<PackageName>.cmake`` file is not typically provided by the
  47. package itself. Rather, it is normally provided by something external to
  48. the package, such as the operating system, CMake itself, or even the project
  49. from which the ``find_package()`` command was called. Being externally
  50. provided, :ref:`Find Modules` tend to be heuristic in nature and are
  51. susceptible to becoming out-of-date. They typically search for certain
  52. libraries, files and other package artifacts.
  53. Module mode is only supported by the
  54. :ref:`basic command signature <Basic Signature>`.
  55. **Config mode**
  56. In this mode, CMake searches for a file called
  57. ``<lowercasePackageName>-config.cmake`` or ``<PackageName>Config.cmake``.
  58. It will also look for ``<lowercasePackageName>-config-version.cmake`` or
  59. ``<PackageName>ConfigVersion.cmake`` if version details were specified
  60. (see :ref:`version selection` for an explanation of how these separate
  61. version files are used).
  62. .. note::
  63. If the experimental ``CMAKE_EXPERIMENTAL_FIND_CPS_PACKAGES`` is enabled,
  64. files named ``<PackageName>.cps`` and ``<lowercasePackageName>.cps`` are
  65. also considered. These files provide package information according to the
  66. |CPS|_ (CPS), which is more portable than CMake script. Aside from any
  67. explicitly noted exceptions, any references to "config files", "config
  68. mode", "package configuration files", and so forth refer equally to both
  69. CPS and CMake-script files. This functionality is a work in progress, and
  70. some features may be missing.
  71. Search is implemented in a manner that will tend to prefer |CPS| files
  72. over CMake-script config files in most cases. Specifying ``CONFIGS``
  73. suppresses consideration of CPS files.
  74. In config mode, the command can be given a list of names to search for
  75. as package names. The locations where CMake searches for the config and
  76. version files is considerably more complicated than for Module mode
  77. (see :ref:`search procedure`).
  78. The config and version files are typically installed as part of the
  79. package, so they tend to be more reliable than Find modules. They usually
  80. contain direct knowledge of the package contents, so no searching or
  81. heuristics are needed within the config or version files themselves.
  82. Config mode is supported by both the :ref:`basic <Basic Signature>` and
  83. :ref:`full <Full Signature>` command signatures.
  84. **FetchContent redirection mode**
  85. .. versionadded:: 3.24
  86. A call to ``find_package()`` can be redirected internally to a package
  87. provided by the :module:`FetchContent` module. To the caller, the behavior
  88. will appear similar to Config mode, except that the search logic is
  89. by-passed and the component information is not used. See
  90. :command:`FetchContent_Declare` and :command:`FetchContent_MakeAvailable`
  91. for further details.
  92. When not redirected to a package provided by :module:`FetchContent`, the
  93. command arguments determine whether Module or Config mode is used. When the
  94. `basic signature`_ is used, the command searches in Module mode first.
  95. If the package is not found, the search falls back to Config mode.
  96. A user may set the :variable:`CMAKE_FIND_PACKAGE_PREFER_CONFIG` variable
  97. to true to reverse the priority and direct CMake to search using Config mode
  98. first before falling back to Module mode. The basic signature can also be
  99. forced to use only Module mode with a ``MODULE`` keyword. If the
  100. `full signature`_ is used, the command only searches in Config mode.
  101. .. _`basic signature`:
  102. Basic Signature
  103. ^^^^^^^^^^^^^^^
  104. .. code-block:: cmake
  105. find_package(<PackageName> [version] [EXACT] [QUIET] [MODULE]
  106. [REQUIRED|OPTIONAL] [[COMPONENTS] [components...]]
  107. [OPTIONAL_COMPONENTS components...]
  108. [REGISTRY_VIEW (64|32|64_32|32_64|HOST|TARGET|BOTH)]
  109. [GLOBAL]
  110. [NO_POLICY_SCOPE]
  111. [BYPASS_PROVIDER])
  112. The basic signature is supported by both Module and Config modes.
  113. The ``MODULE`` keyword implies that only Module mode can be used to find
  114. the package, with no fallback to Config mode.
  115. Regardless of the mode used, a ``<PackageName>_FOUND`` variable will be
  116. set to indicate whether the package was found. When the package is found,
  117. package-specific information may be provided through other variables and
  118. :ref:`Imported Targets` documented by the package itself. The
  119. ``QUIET`` option disables informational messages, including those indicating
  120. that the package cannot be found if it is not ``REQUIRED``. The ``REQUIRED``
  121. option stops processing with an error message if the package cannot be found.
  122. A package-specific list of required components may be listed after the
  123. ``COMPONENTS`` keyword. If any of these components are not able to be
  124. satisfied, the package overall is considered to be not found. If the
  125. ``REQUIRED`` option is also present, this is treated as a fatal error,
  126. otherwise execution still continues. As a form of shorthand, if the
  127. ``REQUIRED`` option is present, the ``COMPONENTS`` keyword can be omitted
  128. and the required components can be listed directly after ``REQUIRED``.
  129. The :variable:`CMAKE_FIND_REQUIRED` variable can be enabled to make this call
  130. ``REQUIRED`` by default. This behavior can be overridden by providing the
  131. ``OPTIONAL`` keyword. As with the ``REQUIRED`` option, a list of components
  132. can be listed directly after ``OPTIONAL``, which is equivalent to listing
  133. them after the ``COMPONENTS`` keyword. When the ``OPTIONAL`` keyword is given,
  134. the warning output when a package is not found is suppressed.
  135. Additional optional components may be listed after
  136. ``OPTIONAL_COMPONENTS``. If these cannot be satisfied, the package overall
  137. can still be considered found, as long as all required components are
  138. satisfied.
  139. .. TODO Once CPS honors COMPONENTS, note that OPTIONAL_COMPONENTS will cause
  140. CMake to attempt to locate dependencies for optional components. Also note
  141. that CMake will *not* load any appendices that don't include COMPONENTS or
  142. OPTIONAL_COMPONENTS. (That isn't the case now, but will be when we don't
  143. just ignore COMPONENTS.) The following paragraph will also need changes.
  144. The set of available components and their meaning are defined by the
  145. target package. For CMake-script package configuration files, it is formally
  146. up to the target package how to interpret the component information given to
  147. it, but it should follow the expectations stated above. For calls where no
  148. components are specified, there is no single expected behavior and target
  149. packages should clearly define what occurs in such cases. Common arrangements
  150. include assuming it should find all components, no components or some
  151. well-defined subset of the available components.
  152. .. note::
  153. If the experimental ``CMAKE_EXPERIMENTAL_FIND_CPS_PACKAGES`` is enabled,
  154. CMake currently imports all available components if the located package
  155. configuration file is a |CPS| file. At this time, ``COMPONENTS`` and
  156. ``OPTIONAL_COMPONENTS`` have no effect when considering a CPS file.
  157. .. versionadded:: 3.24
  158. The ``REGISTRY_VIEW`` keyword specifies which registry views should be
  159. queried. This keyword is only meaningful on ``Windows`` platforms and will
  160. be ignored on all others. Formally, it is up to the target package how to
  161. interpret the registry view information given to it.
  162. .. versionadded:: 3.24
  163. Specifying the ``GLOBAL`` keyword will promote all imported targets to
  164. a global scope in the importing project. Alternatively, this functionality
  165. can be enabled by setting the :variable:`CMAKE_FIND_PACKAGE_TARGETS_GLOBAL`
  166. variable.
  167. .. _FIND_PACKAGE_VERSION_FORMAT:
  168. The ``[version]`` argument requests a version with which the package found
  169. should be compatible. There are two possible forms in which it may be
  170. specified:
  171. * A single version with the format ``major[.minor[.patch[.tweak]]]``, where
  172. each component is a numeric value.
  173. * A version range with the format ``versionMin...[<]versionMax`` where
  174. ``versionMin`` and ``versionMax`` have the same format and constraints on
  175. components being integers as the single version. By default, both end points
  176. are included. By specifying ``<``, the upper end point will be excluded.
  177. Version ranges are only supported with CMake 3.19 or later.
  178. .. note::
  179. With the exception of CPS packages, version support is currently provided
  180. only on a package-by-package basis. When a version range is specified but
  181. the package is only designed to expect a single version, the package will
  182. ignore the upper end point of the range and only take the single version at
  183. the lower end of the range into account. Non-CPS packages that do support
  184. version ranges do so in a manner that is determined by the individual
  185. package. See the `Version Selection`_ section below for details and
  186. important caveats.
  187. The ``EXACT`` option requests that the version be matched exactly. This option
  188. is incompatible with the specification of a version range.
  189. If no ``[version]`` and/or component list is given to a recursive invocation
  190. inside a find-module, the corresponding arguments are forwarded
  191. automatically from the outer call (including the ``EXACT`` flag for
  192. ``[version]``).
  193. See the :command:`cmake_policy` command documentation for discussion
  194. of the ``NO_POLICY_SCOPE`` option.
  195. .. versionadded:: 3.24
  196. The ``BYPASS_PROVIDER`` keyword is only allowed when ``find_package()`` is
  197. being called by a :ref:`dependency provider <dependency_providers>`.
  198. It can be used by providers to call the built-in ``find_package()``
  199. implementation directly and prevent that call from being re-routed back to
  200. itself. Future versions of CMake may detect attempts to use this keyword
  201. from places other than a dependency provider and halt with a fatal error.
  202. .. _`full signature`:
  203. Full Signature
  204. ^^^^^^^^^^^^^^
  205. .. code-block:: cmake
  206. find_package(<PackageName> [version] [EXACT] [QUIET]
  207. [REQUIRED|OPTIONAL] [[COMPONENTS] [components...]]
  208. [OPTIONAL_COMPONENTS components...]
  209. [CONFIG|NO_MODULE]
  210. [GLOBAL]
  211. [NO_POLICY_SCOPE]
  212. [BYPASS_PROVIDER]
  213. [NAMES name1 [name2 ...]]
  214. [CONFIGS config1 [config2 ...]]
  215. [HINTS path1 [path2 ...]]
  216. [PATHS path1 [path2 ...]]
  217. [REGISTRY_VIEW (64|32|64_32|32_64|HOST|TARGET|BOTH)]
  218. [PATH_SUFFIXES suffix1 [suffix2 ...]]
  219. [NO_DEFAULT_PATH]
  220. [NO_PACKAGE_ROOT_PATH]
  221. [NO_CMAKE_PATH]
  222. [NO_CMAKE_ENVIRONMENT_PATH]
  223. [NO_SYSTEM_ENVIRONMENT_PATH]
  224. [NO_CMAKE_PACKAGE_REGISTRY]
  225. [NO_CMAKE_BUILDS_PATH] # Deprecated; does nothing.
  226. [NO_CMAKE_SYSTEM_PATH]
  227. [NO_CMAKE_INSTALL_PREFIX]
  228. [NO_CMAKE_SYSTEM_PACKAGE_REGISTRY]
  229. [CMAKE_FIND_ROOT_PATH_BOTH |
  230. ONLY_CMAKE_FIND_ROOT_PATH |
  231. NO_CMAKE_FIND_ROOT_PATH])
  232. The ``CONFIG`` option, the synonymous ``NO_MODULE`` option, or the use
  233. of options not specified in the `basic signature`_ all enforce pure Config
  234. mode. In pure Config mode, the command skips Module mode search and
  235. proceeds at once with Config mode search.
  236. Config mode search attempts to locate a configuration file provided by the
  237. package to be found. A cache entry called ``<PackageName>_DIR`` is created to
  238. hold the directory containing the file. By default, the command searches for
  239. a package with the name ``<PackageName>``. If the ``NAMES`` option is given,
  240. the names following it are used instead of ``<PackageName>``. The names are
  241. also considered when determining whether to redirect the call to a package
  242. provided by :module:`FetchContent`.
  243. The command searches for a file called ``<PackageName>Config.cmake`` or
  244. ``<lowercasePackageName>-config.cmake`` for each name specified.
  245. A replacement set of possible configuration file names may be given
  246. using the ``CONFIGS`` option. The :ref:`search procedure` is specified below.
  247. Once found, any :ref:`version constraint <version selection>` is checked,
  248. and if satisfied, the configuration file is read and processed by CMake.
  249. Since the file is provided by the package it already knows the
  250. location of package contents. The full path to the configuration file
  251. is stored in the CMake variable ``<PackageName>_CONFIG``.
  252. .. note::
  253. If the experimental ``CMAKE_EXPERIMENTAL_FIND_CPS_PACKAGES`` is enabled,
  254. files named ``<PackageName>.cps`` and ``<lowercasePackageName>.cps`` are
  255. also considered, unless ``CONFIGS`` is given.
  256. All configuration files which have been considered by CMake while
  257. searching for the package with an appropriate version are stored in the
  258. ``<PackageName>_CONSIDERED_CONFIGS`` variable, and the associated versions
  259. in the ``<PackageName>_CONSIDERED_VERSIONS`` variable.
  260. If the package configuration file cannot be found, CMake will generate
  261. an error describing the problem unless the ``QUIET`` argument is
  262. specified. If ``REQUIRED`` is specified and the package is not found, a
  263. fatal error is generated and the configure step stops executing. If
  264. ``<PackageName>_DIR`` has been set to a directory not containing a
  265. configuration file, CMake will ignore it and search from scratch.
  266. Package maintainers providing package configuration files are encouraged to
  267. name and install them such that the :ref:`search procedure` outlined below
  268. will find them without requiring use of additional options.
  269. .. _`search procedure`:
  270. Config Mode Search Procedure
  271. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  272. .. note::
  273. When Config mode is used, this search procedure is applied regardless of
  274. whether the :ref:`full <full signature>` or :ref:`basic <basic signature>`
  275. signature was given.
  276. .. versionadded:: 3.24
  277. All calls to ``find_package()`` (even in Module mode) first look for a config
  278. package file in the :variable:`CMAKE_FIND_PACKAGE_REDIRECTS_DIR` directory.
  279. The :module:`FetchContent` module, or even the project itself, may write files
  280. to that location to redirect ``find_package()`` calls to content already
  281. provided by the project. If no config package file is found in that location,
  282. the search proceeds with the logic described below.
  283. CMake constructs a set of possible installation prefixes for the
  284. package. Under each prefix several directories are searched for a
  285. configuration file. The tables below show the directories searched.
  286. Each entry is meant for installation trees following Windows (``W``), UNIX
  287. (``U``), or Apple (``A``) conventions:
  288. ==================================================================== ==========
  289. Entry Convention
  290. ==================================================================== ==========
  291. ``<prefix>/<name>/cps/`` [#p2]_ W
  292. ``<prefix>/<name>/*/cps/`` [#p2]_ W
  293. ``<prefix>/cps/<name>/`` [#p2]_ W
  294. ``<prefix>/cps/<name>/*/`` [#p2]_ W
  295. ``<prefix>/cps/`` [#p2]_ W
  296. ``<prefix>/`` W
  297. ``<prefix>/(cmake|CMake)/`` W
  298. ``<prefix>/<name>*/`` W
  299. ``<prefix>/<name>*/(cmake|CMake)/`` W
  300. ``<prefix>/<name>*/(cmake|CMake)/<name>*/`` [#p1]_ W
  301. ``<prefix>/(lib/<arch>|lib*|share)/cps/<name>/`` [#p2]_ U
  302. ``<prefix>/(lib/<arch>|lib*|share)/cps/<name>/*/`` [#p2]_ U
  303. ``<prefix>/(lib/<arch>|lib*|share)/cps/`` [#p2]_ U
  304. ``<prefix>/(lib/<arch>|lib*|share)/cmake/<name>*/`` U
  305. ``<prefix>/(lib/<arch>|lib*|share)/<name>*/`` U
  306. ``<prefix>/(lib/<arch>|lib*|share)/<name>*/(cmake|CMake)/`` U
  307. ``<prefix>/<name>*/(lib/<arch>|lib*|share)/cmake/<name>*/`` W/U
  308. ``<prefix>/<name>*/(lib/<arch>|lib*|share)/<name>*/`` W/U
  309. ``<prefix>/<name>*/(lib/<arch>|lib*|share)/<name>*/(cmake|CMake)/`` W/U
  310. ==================================================================== ==========
  311. .. [#p1] .. versionadded:: 3.25
  312. .. [#p2] .. versionadded:: 4.0
  313. On systems supporting macOS :prop_tgt:`FRAMEWORK` and :prop_tgt:`BUNDLE`, the
  314. following directories are searched for Frameworks or Application Bundles
  315. containing a configuration file:
  316. =============================================================== ==========
  317. Entry Convention
  318. =============================================================== ==========
  319. ``<prefix>/<name>.framework/Versions/*/Resources/CPS/`` [#p3]_ A
  320. ``<prefix>/<name>.framework/Resources/CPS/`` [#p3]_ A
  321. ``<prefix>/<name>.framework/Resources/`` A
  322. ``<prefix>/<name>.framework/Resources/CMake/`` A
  323. ``<prefix>/<name>.framework/Versions/*/Resources/`` A
  324. ``<prefix>/<name>.framework/Versions/*/Resources/CMake/`` A
  325. ``<prefix>/<name>.app/Contents/Resources/CPS/`` [#p3]_ A
  326. ``<prefix>/<name>.app/Contents/Resources/`` A
  327. ``<prefix>/<name>.app/Contents/Resources/CMake/`` A
  328. =============================================================== ==========
  329. .. [#p3] .. versionadded:: 4.0
  330. When searching the above paths, ``find_package`` will only look for ``.cps``
  331. files in search paths which contain ``/cps/``, and will only look for
  332. ``.cmake`` files otherwise. (This only applies to the paths as specified and
  333. does not consider the contents of ``<prefix>`` or ``<name>``.)
  334. In all cases the ``<name>`` is treated as case-insensitive and corresponds
  335. to any of the names specified (``<PackageName>`` or names given by ``NAMES``).
  336. If at least one compiled language has been enabled, the architecture-specific
  337. ``lib/<arch>`` and ``lib*`` directories may be searched based on the compiler's
  338. target architecture, in the following order:
  339. ``lib/<arch>``
  340. Searched if the :variable:`CMAKE_LIBRARY_ARCHITECTURE` variable is set.
  341. ``lib64``
  342. Searched on 64 bit platforms (:variable:`CMAKE_SIZEOF_VOID_P` is 8) and the
  343. :prop_gbl:`FIND_LIBRARY_USE_LIB64_PATHS` property is set to ``TRUE``.
  344. ``lib32``
  345. Searched on 32 bit platforms (:variable:`CMAKE_SIZEOF_VOID_P` is 4) and the
  346. :prop_gbl:`FIND_LIBRARY_USE_LIB32_PATHS` property is set to ``TRUE``.
  347. ``libx32``
  348. Searched on platforms using the x32 ABI
  349. if the :prop_gbl:`FIND_LIBRARY_USE_LIBX32_PATHS` property is set to ``TRUE``.
  350. ``lib``
  351. Always searched.
  352. .. versionchanged:: 3.24
  353. On ``Windows`` platform, it is possible to include registry queries as part
  354. of the directories specified through ``HINTS`` and ``PATHS`` keywords, using
  355. a :ref:`dedicated syntax <Find Using Windows Registry>`. Such specifications
  356. will be ignored on all other platforms.
  357. .. versionadded:: 3.24
  358. ``REGISTRY_VIEW`` can be specified to manage ``Windows`` registry queries
  359. specified as part of ``PATHS`` and ``HINTS``.
  360. .. include:: FIND_XXX_REGISTRY_VIEW.txt
  361. If ``PATH_SUFFIXES`` is specified, the suffixes are appended to each
  362. (``W``) or (``U``) directory entry one-by-one.
  363. This set of directories is intended to work in cooperation with
  364. projects that provide configuration files in their installation trees.
  365. Directories above marked with (``W``) are intended for installations on
  366. Windows where the prefix may point at the top of an application's
  367. installation directory. Those marked with (``U``) are intended for
  368. installations on UNIX platforms where the prefix is shared by multiple
  369. packages. This is merely a convention, so all (``W``) and (``U``) directories
  370. are still searched on all platforms. Directories marked with (``A``) are
  371. intended for installations on Apple platforms. The
  372. :variable:`CMAKE_FIND_FRAMEWORK` and :variable:`CMAKE_FIND_APPBUNDLE`
  373. variables determine the order of preference.
  374. .. warning::
  375. Setting :variable:`CMAKE_FIND_FRAMEWORK` or :variable:`CMAKE_FIND_APPBUNDLE`
  376. to values other than ``FIRST`` (the default) will cause CMake to search for
  377. |CPS| files in an order that is different from the order set forth in the
  378. specification.
  379. The set of installation prefixes is constructed using the following
  380. steps. If ``NO_DEFAULT_PATH`` is specified all ``NO_*`` options are
  381. enabled.
  382. 1. Search prefixes unique to the current ``<PackageName>`` being found.
  383. See policy :policy:`CMP0074`.
  384. .. versionadded:: 3.12
  385. Specifically, search prefixes specified by the following variables,
  386. in order:
  387. a. :variable:`<PackageName>_ROOT` CMake variable,
  388. where ``<PackageName>`` is the case-preserved package name.
  389. b. :variable:`<PACKAGENAME>_ROOT` CMake variable,
  390. where ``<PACKAGENAME>`` is the upper-cased package name.
  391. See policy :policy:`CMP0144`.
  392. .. versionadded:: 3.27
  393. c. :envvar:`<PackageName>_ROOT` environment variable,
  394. where ``<PackageName>`` is the case-preserved package name.
  395. d. :envvar:`<PACKAGENAME>_ROOT` environment variable,
  396. where ``<PACKAGENAME>`` is the upper-cased package name.
  397. See policy :policy:`CMP0144`.
  398. .. versionadded:: 3.27
  399. The package root variables are maintained as a stack so if
  400. called from within a find module, root paths from the parent's find
  401. module will also be searched after paths for the current package.
  402. This can be skipped if ``NO_PACKAGE_ROOT_PATH`` is passed or by setting
  403. the :variable:`CMAKE_FIND_USE_PACKAGE_ROOT_PATH` to ``FALSE``.
  404. 2. Search paths specified in CMake-specific cache variables. These
  405. are intended to be used on the command line with a :option:`-DVAR=VALUE <cmake -D>`.
  406. The values are interpreted as :ref:`semicolon-separated lists <CMake Language Lists>`.
  407. This can be skipped if ``NO_CMAKE_PATH`` is passed or by setting the
  408. :variable:`CMAKE_FIND_USE_CMAKE_PATH` to ``FALSE``:
  409. * :variable:`CMAKE_PREFIX_PATH`
  410. * :variable:`CMAKE_FRAMEWORK_PATH`
  411. * :variable:`CMAKE_APPBUNDLE_PATH`
  412. 3. Search paths specified in CMake-specific environment variables.
  413. These are intended to be set in the user's shell configuration,
  414. and therefore use the host's native path separator
  415. (``;`` on Windows and ``:`` on UNIX).
  416. This can be skipped if ``NO_CMAKE_ENVIRONMENT_PATH`` is passed or by setting
  417. the :variable:`CMAKE_FIND_USE_CMAKE_ENVIRONMENT_PATH` to ``FALSE``:
  418. * ``<PackageName>_DIR``
  419. * :envvar:`CMAKE_PREFIX_PATH`
  420. * :envvar:`CMAKE_FRAMEWORK_PATH`
  421. * :envvar:`CMAKE_APPBUNDLE_PATH`
  422. 4. Search paths specified by the ``HINTS`` option. These should be paths
  423. computed by system introspection, such as a hint provided by the
  424. location of another item already found. Hard-coded guesses should
  425. be specified with the ``PATHS`` option.
  426. 5. Search the standard system environment variables. This can be
  427. skipped if ``NO_SYSTEM_ENVIRONMENT_PATH`` is passed or by setting the
  428. :variable:`CMAKE_FIND_USE_SYSTEM_ENVIRONMENT_PATH` to ``FALSE``. Path entries
  429. ending in ``/bin`` or ``/sbin`` are automatically converted to their
  430. parent directories:
  431. * ``PATH``
  432. 6. Search paths stored in the CMake :ref:`User Package Registry`.
  433. This can be skipped if ``NO_CMAKE_PACKAGE_REGISTRY`` is passed or by
  434. setting the variable :variable:`CMAKE_FIND_USE_PACKAGE_REGISTRY`
  435. to ``FALSE`` or the deprecated variable
  436. :variable:`CMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY` to ``TRUE``.
  437. See the :manual:`cmake-packages(7)` manual for details on the user
  438. package registry.
  439. 7. Search CMake variables defined in the Platform files for the
  440. current system. The searching of :variable:`CMAKE_INSTALL_PREFIX` and
  441. :variable:`CMAKE_STAGING_PREFIX` can be
  442. skipped if ``NO_CMAKE_INSTALL_PREFIX`` is passed or by setting the
  443. :variable:`CMAKE_FIND_USE_INSTALL_PREFIX` to ``FALSE``. All these locations
  444. can be skipped if ``NO_CMAKE_SYSTEM_PATH`` is passed or by setting the
  445. :variable:`CMAKE_FIND_USE_CMAKE_SYSTEM_PATH` to ``FALSE``:
  446. * :variable:`CMAKE_SYSTEM_PREFIX_PATH`
  447. * :variable:`CMAKE_SYSTEM_FRAMEWORK_PATH`
  448. * :variable:`CMAKE_SYSTEM_APPBUNDLE_PATH`
  449. The platform paths that these variables contain are locations that
  450. typically include installed software. An example being ``/usr/local`` for
  451. UNIX based platforms.
  452. 8. Search paths stored in the CMake :ref:`System Package Registry`.
  453. This can be skipped if ``NO_CMAKE_SYSTEM_PACKAGE_REGISTRY`` is passed
  454. or by setting the :variable:`CMAKE_FIND_USE_SYSTEM_PACKAGE_REGISTRY`
  455. variable to ``FALSE`` or the deprecated variable
  456. :variable:`CMAKE_FIND_PACKAGE_NO_SYSTEM_PACKAGE_REGISTRY` to ``TRUE``.
  457. See the :manual:`cmake-packages(7)` manual for details on the system
  458. package registry.
  459. 9. Search paths specified by the ``PATHS`` option. These are typically
  460. hard-coded guesses.
  461. The :variable:`CMAKE_IGNORE_PATH`, :variable:`CMAKE_IGNORE_PREFIX_PATH`,
  462. :variable:`CMAKE_SYSTEM_IGNORE_PATH` and
  463. :variable:`CMAKE_SYSTEM_IGNORE_PREFIX_PATH` variables can also cause some
  464. of the above locations to be ignored.
  465. Paths are searched in the order described above. The first viable package
  466. configuration file found is used, even if a newer version of the package
  467. resides later in the list of search paths.
  468. For search paths which contain glob expressions (``*``), the order in which
  469. directories matching the glob are searched is unspecified unless the
  470. :variable:`CMAKE_FIND_PACKAGE_SORT_ORDER` variable is set. This variable,
  471. along with the :variable:`CMAKE_FIND_PACKAGE_SORT_DIRECTION` variable,
  472. determines the order in which CMake considers glob matches. For example, if
  473. the file system contains the package configuration files
  474. ::
  475. <prefix>/example-1.2/example-config.cmake
  476. <prefix>/example-1.10/example-config.cmake
  477. <prefix>/share/example-2.0/example-config.cmake
  478. it is unspecified (when the aforementioned variables are unset) whether
  479. ``find_package(example)`` will find ``example-1.2`` or ``example-1.10``
  480. (assuming that both are viable), but ``find_package`` will *not* find
  481. ``example-2.0``, because one of the other two will be found first.
  482. To control the order in which ``find_package`` searches directories that match
  483. a glob expression, use :variable:`CMAKE_FIND_PACKAGE_SORT_ORDER` and
  484. :variable:`CMAKE_FIND_PACKAGE_SORT_DIRECTION`.
  485. For instance, to cause the above example to select ``example-1.10``,
  486. one can set
  487. .. code-block:: cmake
  488. set(CMAKE_FIND_PACKAGE_SORT_ORDER NATURAL)
  489. set(CMAKE_FIND_PACKAGE_SORT_DIRECTION DEC)
  490. before calling ``find_package``.
  491. .. versionadded:: 3.16
  492. Added the ``CMAKE_FIND_USE_<CATEGORY>`` variables to globally disable
  493. various search locations.
  494. .. versionchanged:: 4.0
  495. The variables :variable:`CMAKE_FIND_PACKAGE_SORT_ORDER` and
  496. :variable:`CMAKE_FIND_PACKAGE_SORT_DIRECTION` now also control the order
  497. in which ``find_package`` searches directories matching the glob expression
  498. in the search paths ``<prefix>/<name>.framework/Versions/*/Resources/``
  499. and ``<prefix>/<name>.framework/Versions/*/Resources/CMake``. In previous
  500. versions of CMake, this order was unspecified.
  501. .. include:: FIND_XXX_ROOT.txt
  502. .. include:: FIND_XXX_ORDER.txt
  503. By default the value stored in the result variable will be the path at
  504. which the file is found. The :variable:`CMAKE_FIND_PACKAGE_RESOLVE_SYMLINKS`
  505. variable may be set to ``TRUE`` before calling ``find_package`` in order
  506. to resolve symbolic links and store the real path to the file.
  507. Every non-REQUIRED ``find_package`` call can be disabled or made REQUIRED:
  508. * Setting the :variable:`CMAKE_DISABLE_FIND_PACKAGE_<PackageName>` variable
  509. to ``TRUE`` disables the package. This also disables redirection to a
  510. package provided by :module:`FetchContent`.
  511. * Setting the :variable:`CMAKE_REQUIRE_FIND_PACKAGE_<PackageName>` variable
  512. to ``TRUE`` makes the package REQUIRED.
  513. Setting both variables to ``TRUE`` simultaneously is an error.
  514. The :variable:`CMAKE_REQUIRE_FIND_PACKAGE_<PackageName>` variable takes priority
  515. over the ``OPTIONAL`` keyword in determining whether a package is required.
  516. .. _`version selection`:
  517. Config Mode Version Selection
  518. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  519. .. note::
  520. When Config mode is used, this version selection process is applied
  521. regardless of whether the :ref:`full <full signature>` or
  522. :ref:`basic <basic signature>` signature was given.
  523. When the ``[version]`` argument is given, Config mode will only find a
  524. version of the package that claims compatibility with the requested
  525. version (see :ref:`format specification <FIND_PACKAGE_VERSION_FORMAT>`). If
  526. the ``EXACT`` option is given, only a version of the package claiming an exact
  527. match of the requested version may be found. CMake does not establish any
  528. convention for the meaning of version numbers.
  529. CMake-script
  530. """"""""""""
  531. For CMake-script package configuration files, package version numbers are
  532. checked by "version" files provided by the packages themselves or by
  533. :module:`FetchContent`. For a candidate package configuration file
  534. ``<config-file>.cmake`` the corresponding version file is located next
  535. to it and named either ``<config-file>-version.cmake`` or
  536. ``<config-file>Version.cmake``. If no such version file is available
  537. then the configuration file is assumed to not be compatible with any
  538. requested version. A basic version file containing generic version
  539. matching code can be created using the
  540. :module:`CMakePackageConfigHelpers` module. When a version file
  541. is found it is loaded to check the requested version number. The
  542. version file is loaded in a nested scope in which the following
  543. variables have been defined:
  544. ``PACKAGE_FIND_NAME``
  545. The ``<PackageName>``
  546. ``PACKAGE_FIND_VERSION``
  547. Full requested version string
  548. ``PACKAGE_FIND_VERSION_MAJOR``
  549. Major version if requested, else 0
  550. ``PACKAGE_FIND_VERSION_MINOR``
  551. Minor version if requested, else 0
  552. ``PACKAGE_FIND_VERSION_PATCH``
  553. Patch version if requested, else 0
  554. ``PACKAGE_FIND_VERSION_TWEAK``
  555. Tweak version if requested, else 0
  556. ``PACKAGE_FIND_VERSION_COUNT``
  557. Number of version components, 0 to 4
  558. When a version range is specified, the above version variables will hold
  559. values based on the lower end of the version range. This is to preserve
  560. compatibility with packages that have not been implemented to expect version
  561. ranges. In addition, the version range will be described by the following
  562. variables:
  563. ``PACKAGE_FIND_VERSION_RANGE``
  564. Full requested version range string
  565. ``PACKAGE_FIND_VERSION_RANGE_MIN``
  566. This specifies whether the lower end point of the version range should be
  567. included or excluded. Currently, the only supported value for this variable
  568. is ``INCLUDE``.
  569. ``PACKAGE_FIND_VERSION_RANGE_MAX``
  570. This specifies whether the upper end point of the version range should be
  571. included or excluded. The supported values for this variable are
  572. ``INCLUDE`` and ``EXCLUDE``.
  573. ``PACKAGE_FIND_VERSION_MIN``
  574. Full requested version string of the lower end point of the range
  575. ``PACKAGE_FIND_VERSION_MIN_MAJOR``
  576. Major version of the lower end point if requested, else 0
  577. ``PACKAGE_FIND_VERSION_MIN_MINOR``
  578. Minor version of the lower end point if requested, else 0
  579. ``PACKAGE_FIND_VERSION_MIN_PATCH``
  580. Patch version of the lower end point if requested, else 0
  581. ``PACKAGE_FIND_VERSION_MIN_TWEAK``
  582. Tweak version of the lower end point if requested, else 0
  583. ``PACKAGE_FIND_VERSION_MIN_COUNT``
  584. Number of version components of the lower end point, 0 to 4
  585. ``PACKAGE_FIND_VERSION_MAX``
  586. Full requested version string of the upper end point of the range
  587. ``PACKAGE_FIND_VERSION_MAX_MAJOR``
  588. Major version of the upper end point if requested, else 0
  589. ``PACKAGE_FIND_VERSION_MAX_MINOR``
  590. Minor version of the upper end point if requested, else 0
  591. ``PACKAGE_FIND_VERSION_MAX_PATCH``
  592. Patch version of the upper end point if requested, else 0
  593. ``PACKAGE_FIND_VERSION_MAX_TWEAK``
  594. Tweak version of the upper end point if requested, else 0
  595. ``PACKAGE_FIND_VERSION_MAX_COUNT``
  596. Number of version components of the upper end point, 0 to 4
  597. Regardless of whether a single version or a version range is specified, the
  598. variable ``PACKAGE_FIND_VERSION_COMPLETE`` will be defined and will hold
  599. the full requested version string as specified.
  600. The version file checks whether it satisfies the requested version and
  601. sets these variables:
  602. ``PACKAGE_VERSION``
  603. Full provided version string
  604. ``PACKAGE_VERSION_EXACT``
  605. True if version is exact match
  606. ``PACKAGE_VERSION_COMPATIBLE``
  607. True if version is compatible
  608. ``PACKAGE_VERSION_UNSUITABLE``
  609. True if unsuitable as any version
  610. These variables are checked by the ``find_package`` command to determine
  611. whether the configuration file provides an acceptable version. They
  612. are not available after the ``find_package`` call returns. If the version
  613. is acceptable, the following variables are set:
  614. ``<PackageName>_VERSION``
  615. Full provided version string
  616. ``<PackageName>_VERSION_MAJOR``
  617. Major version if provided, else 0
  618. ``<PackageName>_VERSION_MINOR``
  619. Minor version if provided, else 0
  620. ``<PackageName>_VERSION_PATCH``
  621. Patch version if provided, else 0
  622. ``<PackageName>_VERSION_TWEAK``
  623. Tweak version if provided, else 0
  624. ``<PackageName>_VERSION_COUNT``
  625. Number of version components, 0 to 4
  626. and the corresponding package configuration file is loaded.
  627. .. note::
  628. While the exact behavior of version matching is determined by the individual
  629. package, many packages use :command:`write_basic_package_version_file` to
  630. supply this logic. The version check scripts this produces have some notable
  631. caveats with respect to version ranges:
  632. * The upper end of a version range acts as a hard limit on what versions will
  633. be accepted. Thus, while a request for version ``1.4.0`` might be
  634. satisfied by a package whose version is ``1.6.0`` and which advertises
  635. 'same major version' compatibility, the same package will be rejected if
  636. the requested version range is ``1.4.0...1.5.0``.
  637. * Both ends of the version range must match the package's advertised
  638. compatibility level. For example, if a package advertises 'same major and
  639. minor version' compatibility, requesting the version range
  640. ``1.4.0...<1.5.5`` or ``1.4.0...1.5.0`` will result in that package being
  641. rejected, even if the package version is ``1.4.1``.
  642. As a result, it is not possible to use a version range to extend the range
  643. of compatible package versions that will be accepted.
  644. |CPS|
  645. """""
  646. For |CPS| package configuration files, package version numbers are checked by
  647. CMake according to the set of recognized version schemas. At present, the
  648. following schemas are recognized:
  649. ``simple``
  650. Version numbers are a tuple of integers followed by an optional trailing
  651. segment which is ignored with respect to version comparisons.
  652. ``custom``
  653. The mechanism for interpreting version numbers is unspecified. The version
  654. strings must match exactly for the package to be accepted.
  655. Refer to |cps-version_schema|_ for a more detailed explanation of each schema
  656. and how comparisons for each are performed. Note that the specification may
  657. include schemas that are not supported by CMake.
  658. In addition to the package's ``version``, CPS allows packages to optionally
  659. specify a |cps-compat_version|_, which is the oldest version for which the
  660. package provides compatibility. That is, the package warrants that a consumer
  661. expecting the ``compat_version`` should be able to use the package, even if the
  662. package's actual version is newer. If not specified, the ``compat_version``
  663. is implicitly equal to the package version, i.e. no backwards compatibility is
  664. provided.
  665. When a package uses a recognized schema, CMake will determine the package's
  666. acceptability according to the following rules:
  667. * If ``EXACT`` was specified, or if the package does not supply a
  668. ``compat_version``, the package's ``version`` must equal the requested
  669. version.
  670. * Otherwise:
  671. * The package's ``version`` must be greater than or equal to the requested
  672. (minimum) version, and
  673. * the package's ``compat_version`` must be less than or equal to the
  674. requested (minimum) version, and
  675. * if a requested maximum version was given, it must be greater than (or equal
  676. to, depending on whether the maximum version is specified as inclusive or
  677. exclusive) the package's ``version``.
  678. .. note::
  679. This implementation of range matching was chosen in order to most closely
  680. match the behavior of :command:`write_basic_package_version_file`, albeit
  681. without the case where an overly broad range matches nothing.
  682. For packages using the ``simple`` version schema, if the version is acceptable,
  683. the following variables are set:
  684. ``<PackageName>_VERSION``
  685. Full provided version string
  686. ``<PackageName>_VERSION_MAJOR``
  687. Major version if provided, else 0
  688. ``<PackageName>_VERSION_MINOR``
  689. Minor version if provided, else 0
  690. ``<PackageName>_VERSION_PATCH``
  691. Patch version if provided, else 0
  692. ``<PackageName>_VERSION_TWEAK``
  693. Tweak version if provided, else 0
  694. ``<PackageName>_VERSION_COUNT``
  695. Number of version components, non-negative
  696. Package File Interface Variables
  697. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  698. When loading a find module or CMake-script package configuration file,
  699. ``find_package`` defines variables to provide information about the call
  700. arguments (and restores their original state before returning):
  701. ``CMAKE_FIND_PACKAGE_NAME``
  702. The ``<PackageName>`` which is searched for
  703. ``<PackageName>_FIND_REQUIRED``
  704. True if ``REQUIRED`` option was given
  705. ``<PackageName>_FIND_QUIETLY``
  706. True if ``QUIET`` option was given
  707. ``<PackageName>_FIND_REGISTRY_VIEW``
  708. The requested view if ``REGISTRY_VIEW`` option was given
  709. ``<PackageName>_FIND_VERSION``
  710. Full requested version string
  711. ``<PackageName>_FIND_VERSION_MAJOR``
  712. Major version if requested, else 0
  713. ``<PackageName>_FIND_VERSION_MINOR``
  714. Minor version if requested, else 0
  715. ``<PackageName>_FIND_VERSION_PATCH``
  716. Patch version if requested, else 0
  717. ``<PackageName>_FIND_VERSION_TWEAK``
  718. Tweak version if requested, else 0
  719. ``<PackageName>_FIND_VERSION_COUNT``
  720. Number of version components, 0 to 4
  721. ``<PackageName>_FIND_VERSION_EXACT``
  722. True if ``EXACT`` option was given
  723. ``<PackageName>_FIND_COMPONENTS``
  724. List of specified components (required and optional)
  725. ``<PackageName>_FIND_REQUIRED_<c>``
  726. True if component ``<c>`` is required,
  727. false if component ``<c>`` is optional
  728. When a version range is specified, the above version variables will hold
  729. values based on the lower end of the version range. This is to preserve
  730. compatibility with packages that have not been implemented to expect version
  731. ranges. In addition, the version range will be described by the following
  732. variables:
  733. ``<PackageName>_FIND_VERSION_RANGE``
  734. Full requested version range string
  735. ``<PackageName>_FIND_VERSION_RANGE_MIN``
  736. This specifies whether the lower end point of the version range is
  737. included or excluded. Currently, ``INCLUDE`` is the only supported value.
  738. ``<PackageName>_FIND_VERSION_RANGE_MAX``
  739. This specifies whether the upper end point of the version range is
  740. included or excluded. The possible values for this variable are
  741. ``INCLUDE`` or ``EXCLUDE``.
  742. ``<PackageName>_FIND_VERSION_MIN``
  743. Full requested version string of the lower end point of the range
  744. ``<PackageName>_FIND_VERSION_MIN_MAJOR``
  745. Major version of the lower end point if requested, else 0
  746. ``<PackageName>_FIND_VERSION_MIN_MINOR``
  747. Minor version of the lower end point if requested, else 0
  748. ``<PackageName>_FIND_VERSION_MIN_PATCH``
  749. Patch version of the lower end point if requested, else 0
  750. ``<PackageName>_FIND_VERSION_MIN_TWEAK``
  751. Tweak version of the lower end point if requested, else 0
  752. ``<PackageName>_FIND_VERSION_MIN_COUNT``
  753. Number of version components of the lower end point, 0 to 4
  754. ``<PackageName>_FIND_VERSION_MAX``
  755. Full requested version string of the upper end point of the range
  756. ``<PackageName>_FIND_VERSION_MAX_MAJOR``
  757. Major version of the upper end point if requested, else 0
  758. ``<PackageName>_FIND_VERSION_MAX_MINOR``
  759. Minor version of the upper end point if requested, else 0
  760. ``<PackageName>_FIND_VERSION_MAX_PATCH``
  761. Patch version of the upper end point if requested, else 0
  762. ``<PackageName>_FIND_VERSION_MAX_TWEAK``
  763. Tweak version of the upper end point if requested, else 0
  764. ``<PackageName>_FIND_VERSION_MAX_COUNT``
  765. Number of version components of the upper end point, 0 to 4
  766. Regardless of whether a single version or a version range is specified, the
  767. variable ``<PackageName>_FIND_VERSION_COMPLETE`` will be defined and will hold
  768. the full requested version string as specified.
  769. In Module mode the loaded find module is responsible to honor the
  770. request detailed by these variables; see the find module for details.
  771. In Config mode ``find_package`` handles ``REQUIRED``, ``QUIET``, and
  772. ``[version]`` options automatically but leaves it to the package
  773. configuration file to handle components in a way that makes sense
  774. for the package. The package configuration file may set
  775. ``<PackageName>_FOUND`` to false to tell ``find_package`` that component
  776. requirements are not satisfied.
  777. .. _CPS: https://cps-org.github.io/cps/
  778. .. |CPS| replace:: Common Package Specification
  779. .. _cps-compat_version: https://cps-org.github.io/cps/schema.html#compat-version
  780. .. |cps-compat_version| replace:: ``compat_version``
  781. .. _cps-version_schema: https://cps-org.github.io/cps/schema.html#version-schema
  782. .. |cps-version_schema| replace:: ``version_schema``