cmake-developer.7.rst 34 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007
  1. .. cmake-manual-description: CMake Developer Reference
  2. cmake-developer(7)
  3. ******************
  4. .. only:: html
  5. .. contents::
  6. Introduction
  7. ============
  8. This manual is intended for reference by developers modifying the CMake
  9. source tree itself.
  10. Permitted C++ Subset
  11. ====================
  12. CMake is required to build with ancient C++ compilers and standard library
  13. implementations. Some common C++ constructs may not be used in CMake in order
  14. to build with such toolchains.
  15. std::auto_ptr
  16. -------------
  17. Some implementations have a ``std::auto_ptr`` which can not be used as a
  18. return value from a function. ``std::auto_ptr`` may not be used. Use
  19. ``cmsys::auto_ptr`` instead.
  20. size_t
  21. ------
  22. Various implementations have differing implementation of ``size_t``. When
  23. assigning the result of ``.size()`` on a container for example, the result
  24. should be assigned to ``size_t`` not to ``std::size_t``, ``unsigned int`` or
  25. similar types.
  26. Adding Compile Features
  27. =======================
  28. CMake reports an error if a compiler whose features are known does not report
  29. support for a particular requested feature. A compiler is considered to have
  30. known features if it reports support for at least one feature.
  31. When adding a new compile feature to CMake, it is therefore necessary to list
  32. support for the feature for all CompilerIds which already have one or more
  33. feature supported, if the new feature is available for any version of the
  34. compiler.
  35. When adding the first supported feature to a particular CompilerId, it is
  36. necessary to list support for all features known to cmake (See
  37. :variable:`CMAKE_C_COMPILE_FEATURES` and
  38. :variable:`CMAKE_CXX_COMPILE_FEATURES` as appropriate), where available for
  39. the compiler. Ensure that the ``CMAKE_<LANG>_STANDARD_DEFAULT`` is set to
  40. the computed internal variable ``CMAKE_<LANG>_STANDARD_COMPUTED_DEFAULT``
  41. for compiler versions which should be supported.
  42. It is sensible to record the features for the most recent version of a
  43. particular CompilerId first, and then work backwards. It is sensible to
  44. try to create a continuous range of versions of feature releases of the
  45. compiler. Gaps in the range indicate incorrect features recorded for
  46. intermediate releases.
  47. Generally, features are made available for a particular version if the
  48. compiler vendor documents availability of the feature with that
  49. version. Note that sometimes partially implemented features appear to
  50. be functional in previous releases (such as ``cxx_constexpr`` in GNU 4.6,
  51. though availability is documented in GNU 4.7), and sometimes compiler vendors
  52. document availability of features, though supporting infrastructure is
  53. not available (such as ``__has_feature(cxx_generic_lambdas)`` indicating
  54. non-availability in Clang 3.4, though it is documented as available, and
  55. fixed in Clang 3.5). Similar cases for other compilers and versions
  56. need to be investigated when extending CMake to support them.
  57. When a vendor releases a new version of a known compiler which supports
  58. a previously unsupported feature, and there are already known features for
  59. that compiler, the feature should be listed as supported in CMake for
  60. that version of the compiler as soon as reasonably possible.
  61. Standard-specific/compiler-specific variables such
  62. ``CMAKE_CXX98_COMPILE_FEATURES`` are deliberately not documented. They
  63. only exist for the compiler-specific implementation of adding the ``-std``
  64. compile flag for compilers which need that.
  65. Help
  66. ====
  67. The ``Help`` directory contains CMake help manual source files.
  68. They are written using the `reStructuredText`_ markup syntax and
  69. processed by `Sphinx`_ to generate the CMake help manuals.
  70. .. _`reStructuredText`: http://docutils.sourceforge.net/docs/ref/rst/introduction.html
  71. .. _`Sphinx`: http://sphinx-doc.org
  72. Markup Constructs
  73. -----------------
  74. In addition to using Sphinx to generate the CMake help manuals, we
  75. also use a C++-implemented document processor to print documents for
  76. the ``--help-*`` command-line help options. It supports a subset of
  77. reStructuredText markup. When authoring or modifying documents,
  78. please verify that the command-line help looks good in addition to the
  79. Sphinx-generated html and man pages.
  80. The command-line help processor supports the following constructs
  81. defined by reStructuredText, Sphinx, and a CMake extension to Sphinx.
  82. ..
  83. Note: This list must be kept consistent with the cmRST implementation.
  84. CMake Domain directives
  85. Directives defined in the `CMake Domain`_ for defining CMake
  86. documentation objects are printed in command-line help output as
  87. if the lines were normal paragraph text with interpretation.
  88. CMake Domain interpreted text roles
  89. Interpreted text roles defined in the `CMake Domain`_ for
  90. cross-referencing CMake documentation objects are replaced by their
  91. link text in command-line help output. Other roles are printed
  92. literally and not processed.
  93. ``code-block`` directive
  94. Add a literal code block without interpretation. The command-line
  95. help processor prints the block content without the leading directive
  96. line and with common indentation replaced by one space.
  97. ``include`` directive
  98. Include another document source file. The command-line help
  99. processor prints the included document inline with the referencing
  100. document.
  101. literal block after ``::``
  102. A paragraph ending in ``::`` followed by a blank line treats
  103. the following indented block as literal text without interpretation.
  104. The command-line help processor prints the ``::`` literally and
  105. prints the block content with common indentation replaced by one
  106. space.
  107. ``note`` directive
  108. Call out a side note. The command-line help processor prints the
  109. block content as if the lines were normal paragraph text with
  110. interpretation.
  111. ``parsed-literal`` directive
  112. Add a literal block with markup interpretation. The command-line
  113. help processor prints the block content without the leading
  114. directive line and with common indentation replaced by one space.
  115. ``productionlist`` directive
  116. Render context-free grammar productions. The command-line help
  117. processor prints the block content as if the lines were normal
  118. paragraph text with interpretation.
  119. ``replace`` directive
  120. Define a ``|substitution|`` replacement.
  121. The command-line help processor requires a substitution replacement
  122. to be defined before it is referenced.
  123. ``|substitution|`` reference
  124. Reference a substitution replacement previously defined by
  125. the ``replace`` directive. The command-line help processor
  126. performs the substitution and replaces all newlines in the
  127. replacement text with spaces.
  128. ``toctree`` directive
  129. Include other document sources in the Table-of-Contents
  130. document tree. The command-line help processor prints
  131. the referenced documents inline as part of the referencing
  132. document.
  133. Inline markup constructs not listed above are printed literally in the
  134. command-line help output. We prefer to use inline markup constructs that
  135. look correct in source form, so avoid use of \\-escapes in favor of inline
  136. literals when possible.
  137. Explicit markup blocks not matching directives listed above are removed from
  138. command-line help output. Do not use them, except for plain ``..`` comments
  139. that are removed by Sphinx too.
  140. Note that nested indentation of blocks is not recognized by the
  141. command-line help processor. Therefore:
  142. * Explicit markup blocks are recognized only when not indented
  143. inside other blocks.
  144. * Literal blocks after paragraphs ending in ``::`` but not
  145. at the top indentation level may consume all indented lines
  146. following them.
  147. Try to avoid these cases in practice.
  148. CMake Domain
  149. ------------
  150. CMake adds a `Sphinx Domain`_ called ``cmake``, also called the
  151. "CMake Domain". It defines several "object" types for CMake
  152. documentation:
  153. ``command``
  154. A CMake language command.
  155. ``generator``
  156. A CMake native build system generator.
  157. See the :manual:`cmake(1)` command-line tool's ``-G`` option.
  158. ``manual``
  159. A CMake manual page, like this :manual:`cmake-developer(7)` manual.
  160. ``module``
  161. A CMake module.
  162. See the :manual:`cmake-modules(7)` manual
  163. and the :command:`include` command.
  164. ``policy``
  165. A CMake policy.
  166. See the :manual:`cmake-policies(7)` manual
  167. and the :command:`cmake_policy` command.
  168. ``prop_cache, prop_dir, prop_gbl, prop_sf, prop_inst, prop_test, prop_tgt``
  169. A CMake cache, directory, global, source file, installed file, test,
  170. or target property, respectively. See the :manual:`cmake-properties(7)`
  171. manual and the :command:`set_property` command.
  172. ``variable``
  173. A CMake language variable.
  174. See the :manual:`cmake-variables(7)` manual
  175. and the :command:`set` command.
  176. Documentation objects in the CMake Domain come from two sources.
  177. First, the CMake extension to Sphinx transforms every document named
  178. with the form ``Help/<type>/<file-name>.rst`` to a domain object with
  179. type ``<type>``. The object name is extracted from the document title,
  180. which is expected to be of the form::
  181. <object-name>
  182. -------------
  183. and to appear at or near the top of the ``.rst`` file before any other
  184. lines starting in a letter, digit, or ``<``. If no such title appears
  185. literally in the ``.rst`` file, the object name is the ``<file-name>``.
  186. If a title does appear, it is expected that ``<file-name>`` is equal
  187. to ``<object-name>`` with any ``<`` and ``>`` characters removed.
  188. Second, the CMake Domain provides directives to define objects inside
  189. other documents:
  190. .. code-block:: rst
  191. .. command:: <command-name>
  192. This indented block documents <command-name>.
  193. .. variable:: <variable-name>
  194. This indented block documents <variable-name>.
  195. Object types for which no directive is available must be defined using
  196. the first approach above.
  197. .. _`Sphinx Domain`: http://sphinx-doc.org/domains.html
  198. Cross-References
  199. ----------------
  200. Sphinx uses reStructuredText interpreted text roles to provide
  201. cross-reference syntax. The `CMake Domain`_ provides for each
  202. domain object type a role of the same name to cross-reference it.
  203. CMake Domain roles are inline markup of the forms::
  204. :type:`name`
  205. :type:`text <name>`
  206. where ``type`` is the domain object type and ``name`` is the
  207. domain object name. In the first form the link text will be
  208. ``name`` (or ``name()`` if the type is ``command``) and in
  209. the second form the link text will be the explicit ``text``.
  210. For example, the code:
  211. .. code-block:: rst
  212. * The :command:`list` command.
  213. * The :command:`list(APPEND)` sub-command.
  214. * The :command:`list() command <list>`.
  215. * The :command:`list(APPEND) sub-command <list>`.
  216. * The :variable:`CMAKE_VERSION` variable.
  217. * The :prop_tgt:`OUTPUT_NAME_<CONFIG>` target property.
  218. produces:
  219. * The :command:`list` command.
  220. * The :command:`list(APPEND)` sub-command.
  221. * The :command:`list() command <list>`.
  222. * The :command:`list(APPEND) sub-command <list>`.
  223. * The :variable:`CMAKE_VERSION` variable.
  224. * The :prop_tgt:`OUTPUT_NAME_<CONFIG>` target property.
  225. Note that CMake Domain roles differ from Sphinx and reStructuredText
  226. convention in that the form ``a<b>``, without a space preceding ``<``,
  227. is interpreted as a name instead of link text with an explicit target.
  228. This is necessary because we use ``<placeholders>`` frequently in
  229. object names like ``OUTPUT_NAME_<CONFIG>``. The form ``a <b>``,
  230. with a space preceding ``<``, is still interpreted as a link text
  231. with an explicit target.
  232. Style
  233. -----
  234. Style: Section Headers
  235. ^^^^^^^^^^^^^^^^^^^^^^
  236. When marking section titles, make the section decoration line as long as
  237. the title text. Use only a line below the title, not above. For
  238. example:
  239. .. code-block:: rst
  240. Title Text
  241. ----------
  242. Capitalize the first letter of each non-minor word in the title.
  243. The section header underline character hierarchy is
  244. * ``#``: Manual group (part) in the master document
  245. * ``*``: Manual (chapter) title
  246. * ``=``: Section within a manual
  247. * ``-``: Subsection or `CMake Domain`_ object document title
  248. * ``^``: Subsubsection or `CMake Domain`_ object document section
  249. * ``"``: Paragraph or `CMake Domain`_ object document subsection
  250. Style: Whitespace
  251. ^^^^^^^^^^^^^^^^^
  252. Use two spaces for indentation. Use two spaces between sentences in
  253. prose.
  254. Style: Line Length
  255. ^^^^^^^^^^^^^^^^^^
  256. Prefer to restrict the width of lines to 75-80 columns. This is not a
  257. hard restriction, but writing new paragraphs wrapped at 75 columns
  258. allows space for adding minor content without significant re-wrapping of
  259. content.
  260. Style: Prose
  261. ^^^^^^^^^^^^
  262. Use American English spellings in prose.
  263. Style: Starting Literal Blocks
  264. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  265. Prefer to mark the start of literal blocks with ``::`` at the end of
  266. the preceding paragraph. In cases where the following block gets
  267. a ``code-block`` marker, put a single ``:`` at the end of the preceding
  268. paragraph.
  269. Style: CMake Command Signatures
  270. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  271. Command signatures should be marked up as plain literal blocks, not as
  272. cmake ``code-blocks``.
  273. Signatures are separated from preceding content by a section header.
  274. That is, use:
  275. .. code-block:: rst
  276. ... preceding paragraph.
  277. Normal Libraries
  278. ^^^^^^^^^^^^^^^^
  279. ::
  280. add_library(<lib> ...)
  281. This signature is used for ...
  282. Signatures of commands should wrap optional parts with square brackets,
  283. and should mark list of optional arguments with an ellipsis (``...``).
  284. Elements of the signature which are specified by the user should be
  285. specified with angle brackets, and may be referred to in prose using
  286. ``inline-literal`` syntax.
  287. Style: Boolean Constants
  288. ^^^^^^^^^^^^^^^^^^^^^^^^
  289. Use "``OFF``" and "``ON``" for boolean values which can be modified by
  290. the user, such as :prop_tgt:`POSITION_INDEPENDENT_CODE`. Such properties
  291. may be "enabled" and "disabled". Use "``True``" and "``False``" for
  292. inherent values which can't be modified after being set, such as the
  293. :prop_tgt:`IMPORTED` property of a build target.
  294. Style: Inline Literals
  295. ^^^^^^^^^^^^^^^^^^^^^^
  296. Mark up references to keywords in signatures, file names, and other
  297. technical terms with ``inline-literal`` syntax, for example:
  298. .. code-block:: rst
  299. If ``WIN32`` is used with :command:`add_executable`, the
  300. :prop_tgt:`WIN32_EXECUTABLE` target property is enabled. That command
  301. creates the file ``<name>.exe`` on Windows.
  302. Style: Cross-References
  303. ^^^^^^^^^^^^^^^^^^^^^^^
  304. Mark up linkable references as links, including repeats.
  305. An alternative, which is used by wikipedia
  306. (`<http://en.wikipedia.org/wiki/WP:REPEATLINK>`_),
  307. is to link to a reference only once per article. That style is not used
  308. in CMake documentation.
  309. Style: Referencing CMake Concepts
  310. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  311. If referring to a concept which corresponds to a property, and that
  312. concept is described in a high-level manual, prefer to link to the
  313. manual section instead of the property. For example:
  314. .. code-block:: rst
  315. This command creates an :ref:`Imported Target <Imported Targets>`.
  316. instead of:
  317. .. code-block:: rst
  318. This command creates an :prop_tgt:`IMPORTED` target.
  319. The latter should be used only when referring specifically to the
  320. property.
  321. References to manual sections are not automatically created by creating
  322. a section, but code such as:
  323. .. code-block:: rst
  324. .. _`Imported Targets`:
  325. creates a suitable anchor. Use an anchor name which matches the name
  326. of the corresponding section. Refer to the anchor using a
  327. cross-reference with specified text.
  328. Imported Targets need the ``IMPORTED`` term marked up with care in
  329. particular because the term may refer to a command keyword
  330. (``IMPORTED``), a target property (:prop_tgt:`IMPORTED`), or a
  331. concept (:ref:`Imported Targets`).
  332. Where a property, command or variable is related conceptually to others,
  333. by for example, being related to the buildsystem description, generator
  334. expressions or Qt, each relevant property, command or variable should
  335. link to the primary manual, which provides high-level information. Only
  336. particular information relating to the command should be in the
  337. documentation of the command.
  338. Style: Referencing CMake Domain Objects
  339. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  340. When referring to `CMake Domain`_ objects such as properties, variables,
  341. commands etc, prefer to link to the target object and follow that with
  342. the type of object it is. For example:
  343. .. code-block:: rst
  344. Set the :prop_tgt:`AUTOMOC` target property to ``ON``.
  345. Instead of
  346. .. code-block:: rst
  347. Set the target property :prop_tgt:`AUTOMOC` to ``ON``.
  348. The ``policy`` directive is an exception, and the type us usually
  349. referred to before the link:
  350. .. code-block:: rst
  351. If policy :prop_tgt:`CMP0022` is set to ``NEW`` the behavior is ...
  352. However, markup self-references with ``inline-literal`` syntax.
  353. For example, within the :command:`add_executable` command
  354. documentation, use
  355. .. code-block:: rst
  356. ``add_executable``
  357. not
  358. .. code-block:: rst
  359. :command:`add_executable`
  360. which is used elsewhere.
  361. Modules
  362. =======
  363. The ``Modules`` directory contains CMake-language ``.cmake`` module files.
  364. Module Documentation
  365. --------------------
  366. To document CMake module ``Modules/<module-name>.cmake``, modify
  367. ``Help/manual/cmake-modules.7.rst`` to reference the module in the
  368. ``toctree`` directive, in sorted order, as::
  369. /module/<module-name>
  370. Then add the module document file ``Help/module/<module-name>.rst``
  371. containing just the line::
  372. .. cmake-module:: ../../Modules/<module-name>.cmake
  373. The ``cmake-module`` directive will scan the module file to extract
  374. reStructuredText markup from comment blocks that start in ``.rst:``.
  375. Add to the top of ``Modules/<module-name>.cmake`` a
  376. :ref:`Line Comment` block of the form:
  377. .. code-block:: cmake
  378. #.rst:
  379. # <module-name>
  380. # -------------
  381. #
  382. # <reStructuredText documentation of module>
  383. or a :ref:`Bracket Comment` of the form:
  384. .. code-block:: cmake
  385. #[[.rst:
  386. <module-name>
  387. -------------
  388. <reStructuredText documentation of module>
  389. #]]
  390. Any number of ``=`` may be used in the opening and closing brackets
  391. as long as they match. Content on the line containing the closing
  392. bracket is excluded if and only if the line starts in ``#``.
  393. Additional such ``.rst:`` comments may appear anywhere in the module file.
  394. All such comments must start with ``#`` in the first column.
  395. For example, a ``Modules/Findxxx.cmake`` module may contain:
  396. .. code-block:: cmake
  397. #.rst:
  398. # FindXxx
  399. # -------
  400. #
  401. # This is a cool module.
  402. # This module does really cool stuff.
  403. # It can do even more than you think.
  404. #
  405. # It even needs two paragraphs to tell you about it.
  406. # And it defines the following variables:
  407. #
  408. # * VAR_COOL: this is great isn't it?
  409. # * VAR_REALLY_COOL: cool right?
  410. <code>
  411. #[========================================[.rst:
  412. .. command:: xxx_do_something
  413. This command does something for Xxx::
  414. xxx_do_something(some arguments)
  415. #]========================================]
  416. macro(xxx_do_something)
  417. <code>
  418. endmacro()
  419. After the top documentation block, leave a *BLANK* line, and then add a
  420. copyright and licence notice block like this one (change only the year
  421. range and name)
  422. .. code-block:: cmake
  423. #=============================================================================
  424. # Copyright 2009-2011 Your Name
  425. #
  426. # Distributed under the OSI-approved BSD License (the "License");
  427. # see accompanying file Copyright.txt for details.
  428. #
  429. # This software is distributed WITHOUT ANY WARRANTY; without even the
  430. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  431. # See the License for more information.
  432. #=============================================================================
  433. # (To distribute this file outside of CMake, substitute the full
  434. # License text for the above reference.)
  435. Test the documentation formatting by running
  436. ``cmake --help-module <module-name>``, and also by enabling the
  437. ``SPHINX_HTML`` and ``SPHINX_MAN`` options to build the documentation.
  438. Edit the comments until generated documentation looks satisfactory. To
  439. have a .cmake file in this directory NOT show up in the modules
  440. documentation, simply leave out the ``Help/module/<module-name>.rst``
  441. file and the ``Help/manual/cmake-modules.7.rst`` toctree entry.
  442. .. _`Find Modules`:
  443. Find Modules
  444. ------------
  445. A "find module" is a ``Modules/Find<package>.cmake`` file to be loaded
  446. by the :command:`find_package` command when invoked for ``<package>``.
  447. The primary task of a find module is to determine whether a package
  448. exists on the system, set the ``<package>_FOUND`` variable to reflect
  449. this and provide any variables, macros and imported targets required to
  450. use the package. A find module is useful in cases where an upstream
  451. library does not provide a
  452. :ref:`config file package <Config File Packages>`.
  453. The traditional approach is to use variables for everything, including
  454. libraries and executables: see the `Standard Variable Names`_ section
  455. below. This is what most of the existing find modules provided by CMake
  456. do.
  457. The more modern approach is to behave as much like
  458. :ref:`config file packages <Config File Packages>` files as possible, by
  459. providing :ref:`imported target <Imported targets>`. This has the advantage
  460. of propagating :ref:`Target Usage Requirements` to consumers.
  461. In either case (or even when providing both variables and imported
  462. targets), find modules should provide backwards compatibility with old
  463. versions that had the same name.
  464. A FindFoo.cmake module will typically be loaded by the command::
  465. find_package(Foo [major[.minor[.patch[.tweak]]]]
  466. [EXACT] [QUIET] [REQUIRED]
  467. [[COMPONENTS] [components...]]
  468. [OPTIONAL_COMPONENTS components...]
  469. [NO_POLICY_SCOPE])
  470. See the :command:`find_package` documentation for details on what
  471. variables are set for the find module. Most of these are dealt with by
  472. using :module:`FindPackageHandleStandardArgs`.
  473. Briefly, the module should only locate versions of the package
  474. compatible with the requested version, as described by the
  475. ``Foo_FIND_VERSION`` family of variables. If ``Foo_FIND_QUIETLY`` is
  476. set to true, it should avoid printing messages, including anything
  477. complaining about the package not being found. If ``Foo_FIND_REQUIRED``
  478. is set to true, the module should issue a ``FATAL_ERROR`` if the package
  479. cannot be found. If neither are set to true, it should print a
  480. non-fatal message if it cannot find the package.
  481. Packages that find multiple semi-independent parts (like bundles of
  482. libraries) should search for the components listed in
  483. ``Foo_FIND_COMPONENTS`` if it is set , and only set ``Foo_FOUND`` to
  484. true if for each searched-for component ``<c>`` that was not found,
  485. ``Foo_FIND_REQUIRED_<c>`` is not set to true. The ``HANDLE_COMPONENTS``
  486. argument of ``find_package_handle_standard_args()`` can be used to
  487. implement this.
  488. If ``Foo_FIND_COMPONENTS`` is not set, which modules are searched for
  489. and required is up to the find module, but should be documented.
  490. For internal implementation, it is a generally accepted convention that
  491. variables starting with underscore are for temporary use only.
  492. Like all modules, find modules should be properly documented. To add a
  493. module to the CMake documentation, follow the steps in the `Module
  494. Documentation`_ section above.
  495. Standard Variable Names
  496. ^^^^^^^^^^^^^^^^^^^^^^^
  497. For a ``FindXxx.cmake`` module that takes the approach of setting
  498. variables (either instead of or in addition to creating imported
  499. targets), the following variable names should be used to keep things
  500. consistent between find modules. Note that all variables start with
  501. ``Xxx_`` to make sure they do not interfere with other find modules; the
  502. same consideration applies to macros, functions and imported targets.
  503. ``Xxx_INCLUDE_DIRS``
  504. The final set of include directories listed in one variable for use by
  505. client code. This should not be a cache entry.
  506. ``Xxx_LIBRARIES``
  507. The libraries to link against to use Xxx. These should include full
  508. paths. This should not be a cache entry.
  509. ``Xxx_DEFINITIONS``
  510. Definitions to use when compiling code that uses Xxx. This really
  511. shouldn't include options such as ``-DHAS_JPEG`` that a client
  512. source-code file uses to decide whether to ``#include <jpeg.h>``
  513. ``Xxx_EXECUTABLE``
  514. Where to find the Xxx tool.
  515. ``Xxx_Yyy_EXECUTABLE``
  516. Where to find the Yyy tool that comes with Xxx.
  517. ``Xxx_LIBRARY_DIRS``
  518. Optionally, the final set of library directories listed in one
  519. variable for use by client code. This should not be a cache entry.
  520. ``Xxx_ROOT_DIR``
  521. Where to find the base directory of Xxx.
  522. ``Xxx_VERSION_Yy``
  523. Expect Version Yy if true. Make sure at most one of these is ever true.
  524. ``Xxx_WRAP_Yy``
  525. If False, do not try to use the relevant CMake wrapping command.
  526. ``Xxx_Yy_FOUND``
  527. If False, optional Yy part of Xxx system is not available.
  528. ``Xxx_FOUND``
  529. Set to false, or undefined, if we haven't found, or don't want to use
  530. Xxx.
  531. ``Xxx_NOT_FOUND_MESSAGE``
  532. Should be set by config-files in the case that it has set
  533. ``Xxx_FOUND`` to FALSE. The contained message will be printed by the
  534. :command:`find_package` command and by
  535. ``find_package_handle_standard_args()`` to inform the user about the
  536. problem.
  537. ``Xxx_RUNTIME_LIBRARY_DIRS``
  538. Optionally, the runtime library search path for use when running an
  539. executable linked to shared libraries. The list should be used by
  540. user code to create the ``PATH`` on windows or ``LD_LIBRARY_PATH`` on
  541. UNIX. This should not be a cache entry.
  542. ``Xxx_VERSION``
  543. The full version string of the package found, if any. Note that many
  544. existing modules provide ``Xxx_VERSION_STRING`` instead.
  545. ``Xxx_VERSION_MAJOR``
  546. The major version of the package found, if any.
  547. ``Xxx_VERSION_MINOR``
  548. The minor version of the package found, if any.
  549. ``Xxx_VERSION_PATCH``
  550. The patch version of the package found, if any.
  551. The following names should not usually be used in CMakeLists.txt files, but
  552. are typically cache variables for users to edit and control the
  553. behaviour of find modules (like entering the path to a library manually)
  554. ``Xxx_LIBRARY``
  555. The path of the Xxx library (as used with :command:`find_library`, for
  556. example).
  557. ``Xxx_Yy_LIBRARY``
  558. The path of the Yy library that is part of the Xxx system. It may or
  559. may not be required to use Xxx.
  560. ``Xxx_INCLUDE_DIR``
  561. Where to find headers for using the Xxx library.
  562. ``Xxx_Yy_INCLUDE_DIR``
  563. Where to find headers for using the Yy library of the Xxx system.
  564. To prevent users being overwhelmed with settings to configure, try to
  565. keep as many options as possible out of the cache, leaving at least one
  566. option which can be used to disable use of the module, or locate a
  567. not-found library (e.g. ``Xxx_ROOT_DIR``). For the same reason, mark
  568. most cache options as advanced. For packages which provide both debug
  569. and release binaries, it is common to create cache variables with a
  570. ``_LIBRARY_<CONFIG>`` suffix, such as ``Foo_LIBRARY_RELEASE`` and
  571. ``Foo_LIBRARY_DEBUG``.
  572. While these are the standard variable names, you should provide
  573. backwards compatibility for any old names that were actually in use.
  574. Make sure you comment them as deprecated, so that no-one starts using
  575. them.
  576. A Sample Find Module
  577. ^^^^^^^^^^^^^^^^^^^^
  578. We will describe how to create a simple find module for a library
  579. ``Foo``.
  580. The first thing that is needed is documentation. CMake's documentation
  581. system requires you to start the file with a documentation marker and
  582. the name of the module. You should follow this with a simple statement
  583. of what the module does.
  584. .. code-block:: cmake
  585. #.rst:
  586. # FindFoo
  587. # -------
  588. #
  589. # Finds the Foo library
  590. #
  591. More description may be required for some packages. If there are
  592. caveats or other details users of the module should be aware of, you can
  593. add further paragraphs below this. Then you need to document what
  594. variables and imported targets are set by the module, such as
  595. .. code-block:: cmake
  596. # This will define the following variables::
  597. #
  598. # Foo_FOUND - True if the system has the Foo library
  599. # Foo_VERSION - The version of the Foo library which was found
  600. #
  601. # and the following imported targets::
  602. #
  603. # Foo::Foo - The Foo library
  604. If the package provides any macros, they should be listed here, but can
  605. be documented where they are defined. See the `Module
  606. Documentation`_ section above for more details.
  607. After the documentation, leave a blank line, and then add a copyright and
  608. licence notice block
  609. .. code-block:: cmake
  610. #=============================================================================
  611. # Copyright 2009-2011 Your Name
  612. #
  613. # Distributed under the OSI-approved BSD License (the "License");
  614. # see accompanying file Copyright.txt for details.
  615. #
  616. # This software is distributed WITHOUT ANY WARRANTY; without even the
  617. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  618. # See the License for more information.
  619. #=============================================================================
  620. # (To distribute this file outside of CMake, substitute the full
  621. # License text for the above reference.)
  622. Now the actual libraries and so on have to be found. The code here will
  623. obviously vary from module to module (dealing with that, after all, is the
  624. point of find modules), but there tends to be a common pattern for libraries.
  625. First, we try to use ``pkg-config`` to find the library. Note that we
  626. cannot rely on this, as it may not be available, but it provides a good
  627. starting point.
  628. .. code-block:: cmake
  629. find_package(PkgConfig)
  630. pkg_check_modules(PC_Foo QUIET Foo)
  631. This should define some variables starting ``PC_Foo_`` that contain the
  632. information from the ``Foo.pc`` file.
  633. Now we need to find the libraries and include files; we use the
  634. information from ``pkg-config`` to provide hints to CMake about where to
  635. look.
  636. .. code-block:: cmake
  637. find_path(Foo_INCLUDE_DIR
  638. NAMES foo.h
  639. PATHS ${PC_Foo_INCLUDE_DIRS}
  640. PATH_SUFFIXES Foo
  641. )
  642. find_library(Foo_LIBRARY
  643. NAMES foo
  644. PATHS ${PC_Foo_LIBRARY_DIRS}
  645. )
  646. If you have a good way of getting the version (from a header file, for
  647. example), you can use that information to set ``Foo_VERSION`` (although
  648. note that find modules have traditionally used ``Foo_VERSION_STRING``,
  649. so you may want to set both). Otherwise, attempt to use the information
  650. from ``pkg-config``
  651. .. code-block:: cmake
  652. set(Foo_VERSION ${PC_Foo_VERSION})
  653. Now we can use :module:`FindPackageHandleStandardArgs` to do most of the
  654. rest of the work for us
  655. .. code-block:: cmake
  656. include(FindPackageHandleStandardArgs)
  657. find_package_handle_standard_args(Foo
  658. FOUND_VAR Foo_FOUND
  659. REQUIRED_VARS
  660. Foo_LIBRARY
  661. Foo_INCLUDE_DIR
  662. VERSION_VAR Foo_VERSION
  663. )
  664. This will check that the ``REQUIRED_VARS`` contain values (that do not
  665. end in ``-NOTFOUND``) and set ``Foo_FOUND`` appropriately. It will also
  666. cache those values. If ``Foo_VERSION`` is set, and a required version
  667. was passed to :command:`find_package`, it will check the requested version
  668. against the one in ``Foo_VERSION``. It will also print messages as
  669. appropriate; note that if the package was found, it will print the
  670. contents of the first required variable to indicate where it was found.
  671. At this point, we have to provide a way for users of the find module to
  672. link to the library or libraries that were found. There are two
  673. approaches, as discussed in the `Find Modules`_ section above. The
  674. traditional variable approach looks like
  675. .. code-block:: cmake
  676. if(Foo_FOUND)
  677. set(Foo_LIBRARIES ${Foo_LIBRARY})
  678. set(Foo_INCLUDE_DIRS ${Foo_INCLUDE_DIR})
  679. set(Foo_DEFINITIONS ${PC_Foo_CFLAGS_OTHER})
  680. endif()
  681. If more than one library was found, all of them should be included in
  682. these variables (see the `Standard Variable Names`_ section for more
  683. information).
  684. When providing imported targets, these should be namespaced (hence the
  685. ``Foo::`` prefix); CMake will recognize that values passed to
  686. :command:`target_link_libraries` that contain ``::`` in their name are
  687. supposed to be imported targets (rather than just library names), and
  688. will produce appropriate diagnostic messages if that target does not
  689. exist (see policy :policy:`CMP0028`).
  690. .. code-block:: cmake
  691. if(Foo_FOUND AND NOT TARGET Foo::Foo)
  692. add_library(Foo::Foo UNKNOWN IMPORTED)
  693. set_target_properties(Foo::Foo PROPERTIES
  694. IMPORTED_LOCATION "${Foo_LIBRARY}"
  695. INTERFACE_COMPILE_OPTIONS "${PC_Foo_CFLAGS_OTHER}"
  696. INTERFACE_INCLUDE_DIRECTORIES "${Foo_INCLUDE_DIR}"
  697. )
  698. endif()
  699. One thing to note about this is that the ``INTERFACE_INCLUDE_DIRECTORIES`` and
  700. similar properties should only contain information about the target itself, and
  701. not any of its dependencies. Instead, those dependencies should also be
  702. targets, and CMake should be told that they are dependencies of this target.
  703. CMake will then combine all the necessary information automatically.
  704. The type of the :prop_tgt:`IMPORTED` target created in the
  705. :command:`add_library` command can always be specified as ``UNKNOWN``
  706. type. This simplifies the code in cases where static or shared variants may
  707. be found, and CMake will determine the type by inspecting the files.
  708. If the library is available with multiple configurations, the
  709. :prop_tgt:`IMPORTED_CONFIGURATIONS` target property should also be
  710. populated:
  711. .. code-block:: cmake
  712. if(Foo_FOUND)
  713. if (NOT TARGET Foo::Foo)
  714. add_library(Foo::Foo UNKNOWN IMPORTED)
  715. endif()
  716. if (Foo_LIBRARY_RELEASE)
  717. set_property(TARGET Foo::Foo APPEND PROPERTY
  718. IMPORTED_CONFIGURATIONS RELEASE
  719. )
  720. set_target_properties(Foo::Foo PROPERTIES
  721. IMPORTED_LOCATION_RELEASE "${Foo_LIBRARY_RELEASE}"
  722. )
  723. endif()
  724. if (Foo_LIBRARY_DEBUG)
  725. set_property(TARGET Foo::Foo APPEND PROPERTY
  726. IMPORTED_CONFIGURATIONS DEBUG
  727. )
  728. set_target_properties(Foo::Foo PROPERTIES
  729. IMPORTED_LOCATION_DEBUG "${Foo_LIBRARY_DEBUG}"
  730. )
  731. endif()
  732. set_target_properties(Foo::Foo PROPERTIES
  733. INTERFACE_COMPILE_OPTIONS "${PC_Foo_CFLAGS_OTHER}"
  734. INTERFACE_INCLUDE_DIRECTORIES "${Foo_INCLUDE_DIR}"
  735. )
  736. endif()
  737. The ``RELEASE`` variant should be listed first in the property
  738. so that that variant is chosen if the user uses a configuration which is
  739. not an exact match for any listed ``IMPORTED_CONFIGURATIONS``.
  740. Most of the cache variables should be hidden in the ``ccmake`` interface unless
  741. the user explicitly asks to edit them.
  742. .. code-block:: cmake
  743. mark_as_advanced(
  744. Foo_INCLUDE_DIR
  745. Foo_LIBRARY
  746. )
  747. If this module replaces an older version, you should set compatibility variables
  748. to cause the least disruption possible.
  749. .. code-block:: cmake
  750. # compatibility variables
  751. set(Foo_VERSION_STRING ${Foo_VERSION})