FetchContent.cmake 84 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt or https://cmake.org/licensing for details.
  3. #[=======================================================================[.rst:
  4. FetchContent
  5. ------------------
  6. .. versionadded:: 3.11
  7. .. only:: html
  8. .. contents::
  9. .. note:: The :guide:`Using Dependencies Guide` provides a high-level
  10. introduction to this general topic. It provides a broader overview of
  11. where the ``FetchContent`` module fits into the bigger picture,
  12. including its relationship to the :command:`find_package` command.
  13. The guide is recommended pre-reading before moving on to the details below.
  14. Overview
  15. ^^^^^^^^
  16. This module enables populating content at configure time via any method
  17. supported by the :module:`ExternalProject` module. Whereas
  18. :command:`ExternalProject_Add` downloads at build time, the
  19. ``FetchContent`` module makes content available immediately, allowing the
  20. configure step to use the content in commands like :command:`add_subdirectory`,
  21. :command:`include` or :command:`file` operations.
  22. Content population details should be defined separately from the command that
  23. performs the actual population. This separation ensures that all the
  24. dependency details are defined before anything might try to use them to
  25. populate content. This is particularly important in more complex project
  26. hierarchies where dependencies may be shared between multiple projects.
  27. The following shows a typical example of declaring content details for some
  28. dependencies and then ensuring they are populated with a separate call:
  29. .. code-block:: cmake
  30. FetchContent_Declare(
  31. googletest
  32. GIT_REPOSITORY https://github.com/google/googletest.git
  33. GIT_TAG 703bd9caab50b139428cea1aaff9974ebee5742e # release-1.10.0
  34. )
  35. FetchContent_Declare(
  36. myCompanyIcons
  37. URL https://intranet.mycompany.com/assets/iconset_1.12.tar.gz
  38. URL_HASH MD5=5588a7b18261c20068beabfb4f530b87
  39. )
  40. FetchContent_MakeAvailable(googletest myCompanyIcons)
  41. The :command:`FetchContent_MakeAvailable` command ensures the named
  42. dependencies have been populated, either by an earlier call or by populating
  43. them itself. When performing the population, it will also add them to the
  44. main build, if possible, so that the main build can use the populated
  45. projects' targets, etc. See the command's documentation for how these steps
  46. are performed.
  47. When using a hierarchical project arrangement, projects at higher levels in
  48. the hierarchy are able to override the declared details of content specified
  49. anywhere lower in the project hierarchy. The first details to be declared
  50. for a given dependency take precedence, regardless of where in the project
  51. hierarchy that occurs. Similarly, the first call that tries to populate a
  52. dependency "wins", with subsequent populations reusing the result of the
  53. first instead of repeating the population again.
  54. See the :ref:`Examples <fetch-content-examples>` which demonstrate
  55. this scenario.
  56. In some cases, the main project may need to have more precise control over
  57. the population, or it may be required to explicitly define the population
  58. steps in a way that cannot be captured by the declared details alone.
  59. For such situations, the lower level :command:`FetchContent_GetProperties` and
  60. :command:`FetchContent_Populate` commands can be used. These lack the richer
  61. features provided by :command:`FetchContent_MakeAvailable` though, so their
  62. direct use should be considered a last resort. The typical pattern of such
  63. custom steps looks like this:
  64. .. code-block:: cmake
  65. # NOTE: Where possible, prefer to use FetchContent_MakeAvailable()
  66. # instead of custom logic like this
  67. # Check if population has already been performed
  68. FetchContent_GetProperties(depname)
  69. if(NOT depname_POPULATED)
  70. # Fetch the content using previously declared details
  71. FetchContent_Populate(depname)
  72. # Set custom variables, policies, etc.
  73. # ...
  74. # Bring the populated content into the build
  75. add_subdirectory(${depname_SOURCE_DIR} ${depname_BINARY_DIR})
  76. endif()
  77. The ``FetchContent`` module also supports defining and populating
  78. content in a single call, with no check for whether the content has been
  79. populated elsewhere already. This should not be done in projects, but may
  80. be appropriate for populating content in CMake's script mode.
  81. See :command:`FetchContent_Populate` for details.
  82. Commands
  83. ^^^^^^^^
  84. .. command:: FetchContent_Declare
  85. .. code-block:: cmake
  86. FetchContent_Declare(
  87. <name>
  88. <contentOptions>...
  89. [SYSTEM]
  90. [OVERRIDE_FIND_PACKAGE |
  91. FIND_PACKAGE_ARGS args...]
  92. )
  93. The ``FetchContent_Declare()`` function records the options that describe
  94. how to populate the specified content. If such details have already
  95. been recorded earlier in this project (regardless of where in the project
  96. hierarchy), this and all later calls for the same content ``<name>`` are
  97. ignored. This "first to record, wins" approach is what allows hierarchical
  98. projects to have parent projects override content details of child projects.
  99. The content ``<name>`` can be any string without spaces, but good practice
  100. would be to use only letters, numbers and underscores. The name will be
  101. treated case-insensitively and it should be obvious for the content it
  102. represents, often being the name of the child project or the value given
  103. to its top level :command:`project` command (if it is a CMake project).
  104. For well-known public projects, the name should generally be the official
  105. name of the project. Choosing an unusual name makes it unlikely that other
  106. projects needing that same content will use the same name, leading to
  107. the content being populated multiple times.
  108. The ``<contentOptions>`` can be any of the download, update or patch options
  109. that the :command:`ExternalProject_Add` command understands. The configure,
  110. build, install and test steps are explicitly disabled and therefore options
  111. related to them will be ignored. The ``SOURCE_SUBDIR`` option is an
  112. exception, see :command:`FetchContent_MakeAvailable` for details on how that
  113. affects behavior.
  114. In most cases, ``<contentOptions>`` will just be a couple of options defining
  115. the download method and method-specific details like a commit tag or archive
  116. hash. For example:
  117. .. code-block:: cmake
  118. FetchContent_Declare(
  119. googletest
  120. GIT_REPOSITORY https://github.com/google/googletest.git
  121. GIT_TAG 703bd9caab50b139428cea1aaff9974ebee5742e # release-1.10.0
  122. )
  123. FetchContent_Declare(
  124. myCompanyIcons
  125. URL https://intranet.mycompany.com/assets/iconset_1.12.tar.gz
  126. URL_HASH MD5=5588a7b18261c20068beabfb4f530b87
  127. )
  128. FetchContent_Declare(
  129. myCompanyCertificates
  130. SVN_REPOSITORY svn+ssh://svn.mycompany.com/srv/svn/trunk/certs
  131. SVN_REVISION -r12345
  132. )
  133. Where contents are being fetched from a remote location and you do not
  134. control that server, it is advisable to use a hash for ``GIT_TAG`` rather
  135. than a branch or tag name. A commit hash is more secure and helps to
  136. confirm that the downloaded contents are what you expected.
  137. .. versionchanged:: 3.14
  138. Commands for the download, update or patch steps can access the terminal.
  139. This may be needed for things like password prompts or real-time display
  140. of command progress.
  141. .. versionadded:: 3.22
  142. The :variable:`CMAKE_TLS_VERIFY`, :variable:`CMAKE_TLS_CAINFO`,
  143. :variable:`CMAKE_NETRC` and :variable:`CMAKE_NETRC_FILE` variables now
  144. provide the defaults for their corresponding content options, just like
  145. they do for :command:`ExternalProject_Add`. Previously, these variables
  146. were ignored by the ``FetchContent`` module.
  147. .. versionadded:: 3.24
  148. ``FIND_PACKAGE_ARGS``
  149. This option is for scenarios where the
  150. :command:`FetchContent_MakeAvailable` command may first try a call to
  151. :command:`find_package` to satisfy the dependency for ``<name>``.
  152. By default, such a call would be simply ``find_package(<name>)``, but
  153. ``FIND_PACKAGE_ARGS`` can be used to provide additional arguments to be
  154. appended after the ``<name>``. ``FIND_PACKAGE_ARGS`` can also be given
  155. with nothing after it, which indicates that :command:`find_package` can
  156. still be called if :variable:`FETCHCONTENT_TRY_FIND_PACKAGE_MODE` is
  157. set to ``OPT_IN`` or is not set.
  158. Everything after the ``FIND_PACKAGE_ARGS`` keyword is appended to the
  159. :command:`find_package` call, so all other ``<contentOptions>`` must
  160. come before the ``FIND_PACKAGE_ARGS`` keyword. If the
  161. :variable:`CMAKE_FIND_PACKAGE_TARGETS_GLOBAL` variable is set to true
  162. at the time ``FetchContent_Declare()`` is called, a ``GLOBAL`` keyword
  163. will be appended to the :command:`find_package` arguments if it was
  164. not already specified. It will also be appended if
  165. ``FIND_PACKAGE_ARGS`` was not given, but
  166. :variable:`FETCHCONTENT_TRY_FIND_PACKAGE_MODE` was set to ``ALWAYS``.
  167. ``OVERRIDE_FIND_PACKAGE`` cannot be used when ``FIND_PACKAGE_ARGS`` is
  168. given.
  169. :ref:`dependency_providers` discusses another way that
  170. :command:`FetchContent_MakeAvailable` calls can be redirected.
  171. ``FIND_PACKAGE_ARGS`` is intended for project control, whereas
  172. dependency providers allow users to override project behavior.
  173. ``OVERRIDE_FIND_PACKAGE``
  174. When a ``FetchContent_Declare(<name> ...)`` call includes this option,
  175. subsequent calls to ``find_package(<name> ...)`` will ensure that
  176. ``FetchContent_MakeAvailable(<name>)`` has been called, then use the
  177. config package files in the :variable:`CMAKE_FIND_PACKAGE_REDIRECTS_DIR`
  178. directory (which are usually created by ``FetchContent_MakeAvailable()``).
  179. This effectively makes :command:`FetchContent_MakeAvailable` override
  180. :command:`find_package` for the named dependency, allowing the former to
  181. satisfy the package requirements of the latter. ``FIND_PACKAGE_ARGS``
  182. cannot be used when ``OVERRIDE_FIND_PACKAGE`` is given.
  183. If a :ref:`dependency provider <dependency_providers>` has been set
  184. and the project calls :command:`find_package` for the ``<name>``
  185. dependency, ``OVERRIDE_FIND_PACKAGE`` will not prevent the provider
  186. from seeing that call. Dependency providers always have the opportunity
  187. to intercept any direct call to :command:`find_package`, except if that
  188. call contains the ``BYPASS_PROVIDER`` option.
  189. .. versionadded:: 3.25
  190. ``SYSTEM``
  191. If the ``SYSTEM`` argument is provided, the :prop_dir:`SYSTEM` directory
  192. property of a subdirectory added by
  193. :command:`FetchContent_MakeAvailable` will be set to true. This will
  194. affect non-imported targets created as part of that command.
  195. See the :prop_tgt:`SYSTEM` target property documentation for a more
  196. detailed discussion of the effects.
  197. .. command:: FetchContent_MakeAvailable
  198. .. versionadded:: 3.14
  199. .. code-block:: cmake
  200. FetchContent_MakeAvailable(<name1> [<name2>...])
  201. This command ensures that each of the named dependencies are made available
  202. to the project by the time it returns. There must have been a call to
  203. :command:`FetchContent_Declare` for each dependency, and the first such call
  204. will control how that dependency will be made available, as described below.
  205. If ``<lowercaseName>_SOURCE_DIR`` is not set:
  206. * .. versionadded:: 3.24
  207. If a :ref:`dependency provider <dependency_providers>` is set, call the
  208. provider's command with ``FETCHCONTENT_MAKEAVAILABLE_SERIAL`` as the
  209. first argument, followed by the arguments of the first call to
  210. :command:`FetchContent_Declare` for ``<name>``. If ``SOURCE_DIR`` or
  211. ``BINARY_DIR`` were not part of the original declared arguments, they
  212. will be added with their default values.
  213. If :variable:`FETCHCONTENT_TRY_FIND_PACKAGE_MODE` was set to ``NEVER``
  214. when the details were declared, any ``FIND_PACKAGE_ARGS`` will be
  215. omitted. The ``OVERRIDE_FIND_PACKAGE`` keyword is also always omitted.
  216. If the provider fulfilled the request, ``FetchContent_MakeAvailable()``
  217. will consider that dependency handled, skip the remaining steps below
  218. and move on to the next dependency in the list.
  219. * .. versionadded:: 3.24
  220. If permitted, :command:`find_package(<name> [<args>...]) <find_package>`
  221. will be called, where ``<args>...`` may be provided by the
  222. ``FIND_PACKAGE_ARGS`` option in :command:`FetchContent_Declare`.
  223. The value of the :variable:`FETCHCONTENT_TRY_FIND_PACKAGE_MODE` variable
  224. at the time :command:`FetchContent_Declare` was called determines whether
  225. ``FetchContent_MakeAvailable()`` can call :command:`find_package`.
  226. If the :variable:`CMAKE_FIND_PACKAGE_TARGETS_GLOBAL` variable is set to
  227. true when ``FetchContent_MakeAvailable()`` is called, it still affects
  228. any imported targets created when that in turn calls
  229. :command:`find_package`, even if that variable was false when the
  230. corresponding details were declared.
  231. If the dependency was not satisfied by a provider or a
  232. :command:`find_package` call, ``FetchContent_MakeAvailable()`` then uses
  233. the following logic to make the dependency available:
  234. * If the dependency has already been populated earlier in this run, set
  235. the ``<lowercaseName>_POPULATED``, ``<lowercaseName>_SOURCE_DIR`` and
  236. ``<lowercaseName>_BINARY_DIR`` variables in the same way as a call to
  237. :command:`FetchContent_GetProperties`, then skip the remaining steps
  238. below and move on to the next dependency in the list.
  239. * Call :command:`FetchContent_Populate` to populate the dependency using
  240. the details recorded by an earlier call to :command:`FetchContent_Declare`.
  241. Halt with a fatal error if no such details have been recorded.
  242. :variable:`FETCHCONTENT_SOURCE_DIR_<uppercaseName>` can be used to override
  243. the declared details and use content provided at the specified location
  244. instead.
  245. * .. versionadded:: 3.24
  246. Ensure the :variable:`CMAKE_FIND_PACKAGE_REDIRECTS_DIR` directory
  247. contains a ``<lowercaseName>-config.cmake`` and a
  248. ``<lowercaseName>-config-version.cmake`` file (or equivalently
  249. ``<name>Config.cmake`` and ``<name>ConfigVersion.cmake``).
  250. The directory that the :variable:`CMAKE_FIND_PACKAGE_REDIRECTS_DIR`
  251. variable points to is cleared at the start of every CMake run.
  252. If no config file exists when :command:`FetchContent_Populate` returns,
  253. a minimal one will be written which :command:`includes <include>` any
  254. ``<lowercaseName>-extra.cmake`` or ``<name>Extra.cmake`` file with the
  255. ``OPTIONAL`` flag (so the files can be missing and won't generate a
  256. warning). Similarly, if no config version file exists, a very simple
  257. one will be written which sets ``PACKAGE_VERSION_COMPATIBLE`` and
  258. ``PACKAGE_VERSION_EXACT`` to true. This ensures all future calls to
  259. :command:`find_package()` for the dependency will use the redirected
  260. config file, regardless of any version requirements.
  261. CMake cannot automatically determine an arbitrary dependency's version,
  262. so it cannot set ``PACKAGE_VERSION``.
  263. When a dependency is pulled in via :command:`add_subdirectory` in the
  264. next step, it may choose to overwrite the generated config version file
  265. in :variable:`CMAKE_FIND_PACKAGE_REDIRECTS_DIR` with one that also sets
  266. ``PACKAGE_VERSION``.
  267. The dependency may also write a ``<lowercaseName>-extra.cmake`` or
  268. ``<name>Extra.cmake`` file to perform custom processing or define any
  269. variables that their normal (installed) package config file would
  270. otherwise usually define (many projects don't do any custom processing
  271. or set any variables and therefore have no need to do this).
  272. If required, the main project can write these files instead if the
  273. dependency project doesn't do so. This allows the main project to
  274. add missing details from older dependencies that haven't or can't be
  275. updated to support this functionality.
  276. See `Integrating With find_package()`_ for examples.
  277. * If the top directory of the populated content contains a ``CMakeLists.txt``
  278. file, call :command:`add_subdirectory` to add it to the main build.
  279. It is not an error for there to be no ``CMakeLists.txt`` file, which
  280. allows the command to be used for dependencies that make downloaded
  281. content available at a known location, but which do not need or support
  282. being added directly to the build.
  283. .. versionadded:: 3.18
  284. The ``SOURCE_SUBDIR`` option can be given in the declared details to
  285. look somewhere below the top directory instead (i.e. the same way that
  286. ``SOURCE_SUBDIR`` is used by the :command:`ExternalProject_Add`
  287. command). The path provided with ``SOURCE_SUBDIR`` must be relative
  288. and will be treated as relative to the top directory. It can also
  289. point to a directory that does not contain a ``CMakeLists.txt`` file
  290. or even to a directory that doesn't exist. This can be used to avoid
  291. adding a project that contains a ``CMakeLists.txt`` file in its top
  292. directory.
  293. .. versionadded:: 3.25
  294. If the ``SYSTEM`` keyword was included in the call to
  295. :command:`FetchContent_Declare`, the ``SYSTEM`` keyword will be
  296. added to the :command:`add_subdirectory` command as well.
  297. Projects should aim to declare the details of all dependencies they might
  298. use before they call ``FetchContent_MakeAvailable()`` for any of them.
  299. This ensures that if any of the dependencies are also sub-dependencies of
  300. one or more of the others, the main project still controls the details
  301. that will be used (because it will declare them first before the
  302. dependencies get a chance to). In the following code samples, assume that
  303. the ``uses_other`` dependency also uses ``FetchContent`` to add the ``other``
  304. dependency internally:
  305. .. code-block:: cmake
  306. # WRONG: Should declare all details first
  307. FetchContent_Declare(uses_other ...)
  308. FetchContent_MakeAvailable(uses_other)
  309. FetchContent_Declare(other ...) # Will be ignored, uses_other beat us to it
  310. FetchContent_MakeAvailable(other) # Would use details declared by uses_other
  311. .. code-block:: cmake
  312. # CORRECT: All details declared first, so they will take priority
  313. FetchContent_Declare(uses_other ...)
  314. FetchContent_Declare(other ...)
  315. FetchContent_MakeAvailable(uses_other other)
  316. Note that :variable:`CMAKE_VERIFY_INTERFACE_HEADER_SETS` is explicitly set
  317. to false upon entry to ``FetchContent_MakeAvailable()``, and is restored to
  318. its original value before the command returns. Developers typically only
  319. want to verify header sets from the main project, not those from any
  320. dependencies. This local manipulation of the
  321. :variable:`CMAKE_VERIFY_INTERFACE_HEADER_SETS` variable provides that
  322. intuitive behavior. You can use variables like
  323. :variable:`CMAKE_PROJECT_INCLUDE` or
  324. :variable:`CMAKE_PROJECT_<PROJECT-NAME>_INCLUDE` to turn verification back
  325. on for all or some dependencies. You can also set the
  326. :prop_tgt:`VERIFY_INTERFACE_HEADER_SETS` property of individual targets.
  327. .. command:: FetchContent_Populate
  328. .. note::
  329. Where possible, prefer to use :command:`FetchContent_MakeAvailable`
  330. instead of implementing population manually with this command.
  331. .. code-block:: cmake
  332. FetchContent_Populate(<name>)
  333. In most cases, the only argument given to ``FetchContent_Populate()`` is the
  334. ``<name>``. When used this way, the command assumes the content details have
  335. been recorded by an earlier call to :command:`FetchContent_Declare`. The
  336. details are stored in a global property, so they are unaffected by things
  337. like variable or directory scope. Therefore, it doesn't matter where in the
  338. project the details were previously declared, as long as they have been
  339. declared before the call to ``FetchContent_Populate()``. Those saved details
  340. are then used to construct a call to :command:`ExternalProject_Add` in a
  341. private sub-build to perform the content population immediately. The
  342. implementation of ``ExternalProject_Add()`` ensures that if the content has
  343. already been populated in a previous CMake run, that content will be reused
  344. rather than repopulating them again. For the common case where population
  345. involves downloading content, the cost of the download is only paid once.
  346. An internal global property records when a particular content population
  347. request has been processed. If ``FetchContent_Populate()`` is called more
  348. than once for the same content name within a configure run, the second call
  349. will halt with an error. Projects can and should check whether content
  350. population has already been processed with the
  351. :command:`FetchContent_GetProperties` command before calling
  352. ``FetchContent_Populate()``.
  353. ``FetchContent_Populate()`` will set three variables in the scope of the
  354. caller:
  355. ``<lowercaseName>_POPULATED``
  356. This will always be set to ``TRUE`` by the call.
  357. ``<lowercaseName>_SOURCE_DIR``
  358. The location where the populated content can be found upon return.
  359. ``<lowercaseName>_BINARY_DIR``
  360. A directory intended for use as a corresponding build directory.
  361. The main use case for the ``<lowercaseName>_SOURCE_DIR`` and
  362. ``<lowercaseName>_BINARY_DIR`` variables is to call
  363. :command:`add_subdirectory` immediately after population:
  364. .. code-block:: cmake
  365. FetchContent_Populate(FooBar)
  366. add_subdirectory(${foobar_SOURCE_DIR} ${foobar_BINARY_DIR})
  367. The values of the three variables can also be retrieved from anywhere in the
  368. project hierarchy using the :command:`FetchContent_GetProperties` command.
  369. The ``FetchContent_Populate()`` command also supports a syntax allowing the
  370. content details to be specified directly rather than using any saved
  371. details. This is more low-level and use of this form is generally to be
  372. avoided in favor of using saved content details as outlined above.
  373. Nevertheless, in certain situations it can be useful to invoke the content
  374. population as an isolated operation (typically as part of implementing some
  375. other higher level feature or when using CMake in script mode):
  376. .. code-block:: cmake
  377. FetchContent_Populate(
  378. <name>
  379. [QUIET]
  380. [SUBBUILD_DIR <subBuildDir>]
  381. [SOURCE_DIR <srcDir>]
  382. [BINARY_DIR <binDir>]
  383. ...
  384. )
  385. This form has a number of key differences to that where only ``<name>`` is
  386. provided:
  387. - All required population details are assumed to have been provided directly
  388. in the call to ``FetchContent_Populate()``. Any saved details for
  389. ``<name>`` are ignored.
  390. - No check is made for whether content for ``<name>`` has already been
  391. populated.
  392. - No global property is set to record that the population has occurred.
  393. - No global properties record the source or binary directories used for the
  394. populated content.
  395. - The ``FETCHCONTENT_FULLY_DISCONNECTED`` and
  396. ``FETCHCONTENT_UPDATES_DISCONNECTED`` cache variables are ignored.
  397. The ``<lowercaseName>_SOURCE_DIR`` and ``<lowercaseName>_BINARY_DIR``
  398. variables are still returned to the caller, but since these locations are
  399. not stored as global properties when this form is used, they are only
  400. available to the calling scope and below rather than the entire project
  401. hierarchy. No ``<lowercaseName>_POPULATED`` variable is set in the caller's
  402. scope with this form.
  403. The supported options for ``FetchContent_Populate()`` are the same as those
  404. for :command:`FetchContent_Declare()`. Those few options shown just
  405. above are either specific to ``FetchContent_Populate()`` or their behavior is
  406. slightly modified from how :command:`ExternalProject_Add` treats them:
  407. ``QUIET``
  408. The ``QUIET`` option can be given to hide the output associated with
  409. populating the specified content. If the population fails, the output will
  410. be shown regardless of whether this option was given or not so that the
  411. cause of the failure can be diagnosed. The global ``FETCHCONTENT_QUIET``
  412. cache variable has no effect on ``FetchContent_Populate()`` calls where the
  413. content details are provided directly.
  414. ``SUBBUILD_DIR``
  415. The ``SUBBUILD_DIR`` argument can be provided to change the location of the
  416. sub-build created to perform the population. The default value is
  417. ``${CMAKE_CURRENT_BINARY_DIR}/<lowercaseName>-subbuild`` and it would be
  418. unusual to need to override this default. If a relative path is specified,
  419. it will be interpreted as relative to :variable:`CMAKE_CURRENT_BINARY_DIR`.
  420. This option should not be confused with the ``SOURCE_SUBDIR`` option which
  421. only affects the :command:`FetchContent_MakeAvailable` command.
  422. ``SOURCE_DIR``, ``BINARY_DIR``
  423. The ``SOURCE_DIR`` and ``BINARY_DIR`` arguments are supported by
  424. :command:`ExternalProject_Add`, but different default values are used by
  425. ``FetchContent_Populate()``. ``SOURCE_DIR`` defaults to
  426. ``${CMAKE_CURRENT_BINARY_DIR}/<lowercaseName>-src`` and ``BINARY_DIR``
  427. defaults to ``${CMAKE_CURRENT_BINARY_DIR}/<lowercaseName>-build``.
  428. If a relative path is specified, it will be interpreted as relative to
  429. :variable:`CMAKE_CURRENT_BINARY_DIR`.
  430. In addition to the above explicit options, any other unrecognized options are
  431. passed through unmodified to :command:`ExternalProject_Add` to perform the
  432. download, patch and update steps. The following options are explicitly
  433. prohibited (they are disabled by the ``FetchContent_Populate()`` command):
  434. - ``CONFIGURE_COMMAND``
  435. - ``BUILD_COMMAND``
  436. - ``INSTALL_COMMAND``
  437. - ``TEST_COMMAND``
  438. If using ``FetchContent_Populate()`` within CMake's script mode, be aware
  439. that the implementation sets up a sub-build which therefore requires a CMake
  440. generator and build tool to be available. If these cannot be found by
  441. default, then the :variable:`CMAKE_GENERATOR` and/or
  442. :variable:`CMAKE_MAKE_PROGRAM` variables will need to be set appropriately
  443. on the command line invoking the script.
  444. .. versionadded:: 3.18
  445. Added support for the ``DOWNLOAD_NO_EXTRACT`` option.
  446. .. command:: FetchContent_GetProperties
  447. When using saved content details, a call to
  448. :command:`FetchContent_MakeAvailable` or :command:`FetchContent_Populate`
  449. records information in global properties which can be queried at any time.
  450. This information may include the source and binary directories associated with
  451. the content and also whether or not the content population has been processed
  452. during the current configure run.
  453. .. code-block:: cmake
  454. FetchContent_GetProperties(
  455. <name>
  456. [SOURCE_DIR <srcDirVar>]
  457. [BINARY_DIR <binDirVar>]
  458. [POPULATED <doneVar>]
  459. )
  460. The ``SOURCE_DIR``, ``BINARY_DIR`` and ``POPULATED`` options can be used to
  461. specify which properties should be retrieved. Each option accepts a value
  462. which is the name of the variable in which to store that property. Most of
  463. the time though, only ``<name>`` is given, in which case the call will then
  464. set the same variables as a call to
  465. :command:`FetchContent_MakeAvailable(name) <FetchContent_MakeAvailable>` or
  466. :command:`FetchContent_Populate(name) <FetchContent_Populate>`.
  467. Note that the ``SOURCE_DIR`` and ``BINARY_DIR`` values can be empty if the
  468. call is fulfilled by a :ref:`dependency provider <dependency_providers>`.
  469. This command is rarely needed when using
  470. :command:`FetchContent_MakeAvailable`. It is more commonly used as part of
  471. implementing the following pattern with :command:`FetchContent_Populate`,
  472. which ensures that the relevant variables will always be defined regardless
  473. of whether or not the population has been performed elsewhere in the project
  474. already:
  475. .. code-block:: cmake
  476. # Check if population has already been performed
  477. FetchContent_GetProperties(depname)
  478. if(NOT depname_POPULATED)
  479. # Fetch the content using previously declared details
  480. FetchContent_Populate(depname)
  481. # Set custom variables, policies, etc.
  482. # ...
  483. # Bring the populated content into the build
  484. add_subdirectory(${depname_SOURCE_DIR} ${depname_BINARY_DIR})
  485. endif()
  486. .. command:: FetchContent_SetPopulated
  487. .. versionadded:: 3.24
  488. .. note::
  489. This command should only be called by
  490. :ref:`dependency providers <dependency_providers>`. Calling it in any
  491. other context is unsupported and future CMake versions may halt with a
  492. fatal error in such cases.
  493. .. code-block:: cmake
  494. FetchContent_SetPopulated(
  495. <name>
  496. [SOURCE_DIR <srcDir>]
  497. [BINARY_DIR <binDir>]
  498. )
  499. If a provider command fulfills a ``FETCHCONTENT_MAKEAVAILABLE_SERIAL``
  500. request, it must call this function before returning. The ``SOURCE_DIR``
  501. and ``BINARY_DIR`` arguments can be used to specify the values that
  502. :command:`FetchContent_GetProperties` should return for its corresponding
  503. arguments. Only provide ``SOURCE_DIR`` and ``BINARY_DIR`` if they have
  504. the same meaning as if they had been populated by the built-in
  505. :command:`FetchContent_MakeAvailable` implementation.
  506. Variables
  507. ^^^^^^^^^
  508. A number of cache variables can influence the behavior where details from a
  509. :command:`FetchContent_Declare` call are used to populate content.
  510. .. note::
  511. All of these variables are intended for the developer to customize behavior.
  512. They should not normally be set by the project.
  513. .. variable:: FETCHCONTENT_BASE_DIR
  514. In most cases, the saved details do not specify any options relating to the
  515. directories to use for the internal sub-build, final source and build areas.
  516. It is generally best to leave these decisions up to the ``FetchContent``
  517. module to handle on the project's behalf. The ``FETCHCONTENT_BASE_DIR``
  518. cache variable controls the point under which all content population
  519. directories are collected, but in most cases, developers would not need to
  520. change this. The default location is ``${CMAKE_BINARY_DIR}/_deps``, but if
  521. developers change this value, they should aim to keep the path short and
  522. just below the top level of the build tree to avoid running into path
  523. length problems on Windows.
  524. .. variable:: FETCHCONTENT_QUIET
  525. The logging output during population can be quite verbose, making the
  526. configure stage quite noisy. This cache option (``ON`` by default) hides
  527. all population output unless an error is encountered. If experiencing
  528. problems with hung downloads, temporarily switching this option off may
  529. help diagnose which content population is causing the issue.
  530. .. variable:: FETCHCONTENT_FULLY_DISCONNECTED
  531. When this option is enabled, no attempt is made to download or update
  532. any content. It is assumed that all content has already been populated in
  533. a previous run or the source directories have been pointed at existing
  534. contents the developer has provided manually (using options described
  535. further below). When the developer knows that no changes have been made to
  536. any content details, turning this option ``ON`` can significantly speed up
  537. the configure stage. It is ``OFF`` by default.
  538. .. variable:: FETCHCONTENT_UPDATES_DISCONNECTED
  539. This is a less severe download/update control compared to
  540. :variable:`FETCHCONTENT_FULLY_DISCONNECTED`. Instead of bypassing all
  541. download and update logic, ``FETCHCONTENT_UPDATES_DISCONNECTED`` only
  542. disables the update stage. Therefore, if content has not been downloaded
  543. previously, it will still be downloaded when this option is enabled.
  544. This can speed up the configure stage, but not as much as
  545. :variable:`FETCHCONTENT_FULLY_DISCONNECTED`. It is ``OFF`` by default.
  546. .. variable:: FETCHCONTENT_TRY_FIND_PACKAGE_MODE
  547. .. versionadded:: 3.24
  548. This variable modifies the details that :command:`FetchContent_Declare`
  549. records for a given dependency. While it ultimately controls the behavior
  550. of :command:`FetchContent_MakeAvailable`, it is the variable's value when
  551. :command:`FetchContent_Declare` is called that gets used. It makes no
  552. difference what the variable is set to when
  553. :command:`FetchContent_MakeAvailable` is called. Since the variable should
  554. only be set by the user and not by projects directly, it will typically have
  555. the same value throughout anyway, so this distinction is not usually
  556. noticeable.
  557. ``FETCHCONTENT_TRY_FIND_PACKAGE_MODE`` ultimately controls whether
  558. :command:`FetchContent_MakeAvailable` is allowed to call
  559. :command:`find_package` to satisfy a dependency. The variable can be set
  560. to one of the following values:
  561. ``OPT_IN``
  562. :command:`FetchContent_MakeAvailable` will only call
  563. :command:`find_package` if the :command:`FetchContent_Declare` call
  564. included a ``FIND_PACKAGE_ARGS`` keyword. This is also the default
  565. behavior if ``FETCHCONTENT_TRY_FIND_PACKAGE_MODE`` is not set.
  566. ``ALWAYS``
  567. :command:`find_package` can be called by
  568. :command:`FetchContent_MakeAvailable` regardless of whether the
  569. :command:`FetchContent_Declare` call included a ``FIND_PACKAGE_ARGS``
  570. keyword or not. If no ``FIND_PACKAGE_ARGS`` keyword was given, the
  571. behavior will be as though ``FIND_PACKAGE_ARGS`` had been provided,
  572. with no additional arguments after it.
  573. ``NEVER``
  574. :command:`FetchContent_MakeAvailable` will not call
  575. :command:`find_package`. Any ``FIND_PACKAGE_ARGS`` given to the
  576. :command:`FetchContent_Declare` call will be ignored.
  577. As a special case, if the :variable:`FETCHCONTENT_SOURCE_DIR_<uppercaseName>`
  578. variable has a non-empty value for a dependency, it is assumed that the
  579. user is overriding all other methods of making that dependency available.
  580. ``FETCHCONTENT_TRY_FIND_PACKAGE_MODE`` will have no effect on that
  581. dependency and :command:`FetchContent_MakeAvailable` will not try to call
  582. :command:`find_package` for it.
  583. In addition to the above, the following variables are also defined for each
  584. content name:
  585. .. variable:: FETCHCONTENT_SOURCE_DIR_<uppercaseName>
  586. If this is set, no download or update steps are performed for the specified
  587. content and the ``<lowercaseName>_SOURCE_DIR`` variable returned to the
  588. caller is pointed at this location. This gives developers a way to have a
  589. separate checkout of the content that they can modify freely without
  590. interference from the build. The build simply uses that existing source,
  591. but it still defines ``<lowercaseName>_BINARY_DIR`` to point inside its own
  592. build area. Developers are strongly encouraged to use this mechanism rather
  593. than editing the sources populated in the default location, as changes to
  594. sources in the default location can be lost when content population details
  595. are changed by the project.
  596. .. variable:: FETCHCONTENT_UPDATES_DISCONNECTED_<uppercaseName>
  597. This is the per-content equivalent of
  598. :variable:`FETCHCONTENT_UPDATES_DISCONNECTED`. If the global option or
  599. this option is ``ON``, then updates will be disabled for the named content.
  600. Disabling updates for individual content can be useful for content whose
  601. details rarely change, while still leaving other frequently changing content
  602. with updates enabled.
  603. .. _`fetch-content-examples`:
  604. Examples
  605. ^^^^^^^^
  606. Typical Case
  607. """"""""""""
  608. This first fairly straightforward example ensures that some popular testing
  609. frameworks are available to the main build:
  610. .. code-block:: cmake
  611. include(FetchContent)
  612. FetchContent_Declare(
  613. googletest
  614. GIT_REPOSITORY https://github.com/google/googletest.git
  615. GIT_TAG 703bd9caab50b139428cea1aaff9974ebee5742e # release-1.10.0
  616. )
  617. FetchContent_Declare(
  618. Catch2
  619. GIT_REPOSITORY https://github.com/catchorg/Catch2.git
  620. GIT_TAG 605a34765aa5d5ecbf476b4598a862ada971b0cc # v3.0.1
  621. )
  622. # After the following call, the CMake targets defined by googletest and
  623. # Catch2 will be available to the rest of the build
  624. FetchContent_MakeAvailable(googletest Catch2)
  625. .. _FetchContent-find_package-integration-examples:
  626. Integrating With find_package()
  627. """""""""""""""""""""""""""""""
  628. For the previous example, if the user wanted to try to find ``googletest``
  629. and ``Catch2`` via :command:`find_package` first before trying to download
  630. and build them from source, they could set the
  631. :variable:`FETCHCONTENT_TRY_FIND_PACKAGE_MODE` variable to ``ALWAYS``.
  632. This would also affect any other calls to :command:`FetchContent_Declare`
  633. throughout the project, which might not be acceptable. The behavior can be
  634. enabled for just these two dependencies instead by adding ``FIND_PACKAGE_ARGS``
  635. to the declared details and leaving
  636. :variable:`FETCHCONTENT_TRY_FIND_PACKAGE_MODE` unset, or set to ``OPT_IN``:
  637. .. code-block:: cmake
  638. include(FetchContent)
  639. FetchContent_Declare(
  640. googletest
  641. GIT_REPOSITORY https://github.com/google/googletest.git
  642. GIT_TAG 703bd9caab50b139428cea1aaff9974ebee5742e # release-1.10.0
  643. FIND_PACKAGE_ARGS NAMES GTest
  644. )
  645. FetchContent_Declare(
  646. Catch2
  647. GIT_REPOSITORY https://github.com/catchorg/Catch2.git
  648. GIT_TAG 605a34765aa5d5ecbf476b4598a862ada971b0cc # v3.0.1
  649. FIND_PACKAGE_ARGS
  650. )
  651. # This will try calling find_package() first for both dependencies
  652. FetchContent_MakeAvailable(googletest Catch2)
  653. For ``Catch2``, no additional arguments to :command:`find_package` are needed,
  654. so no additional arguments are provided after the ``FIND_PACKAGE_ARGS``
  655. keyword. For ``googletest``, its package is more commonly called ``GTest``,
  656. so arguments are added to support it being found by that name.
  657. If the user wanted to disable :command:`FetchContent_MakeAvailable` from
  658. calling :command:`find_package` for any dependency, even if it provided
  659. ``FIND_PACKAGE_ARGS`` in its declared details, they could set
  660. :variable:`FETCHCONTENT_TRY_FIND_PACKAGE_MODE` to ``NEVER``.
  661. If the project wanted to indicate that these two dependencies should be
  662. downloaded and built from source and that :command:`find_package` calls
  663. should be redirected to use the built dependencies, the
  664. ``OVERRIDE_FIND_PACKAGE`` option should be used when declaring the content
  665. details:
  666. .. code-block:: cmake
  667. include(FetchContent)
  668. FetchContent_Declare(
  669. googletest
  670. GIT_REPOSITORY https://github.com/google/googletest.git
  671. GIT_TAG 703bd9caab50b139428cea1aaff9974ebee5742e # release-1.10.0
  672. OVERRIDE_FIND_PACKAGE
  673. )
  674. FetchContent_Declare(
  675. Catch2
  676. GIT_REPOSITORY https://github.com/catchorg/Catch2.git
  677. GIT_TAG 605a34765aa5d5ecbf476b4598a862ada971b0cc # v3.0.1
  678. OVERRIDE_FIND_PACKAGE
  679. )
  680. # The following will automatically forward through to FetchContent_MakeAvailable()
  681. find_package(googletest)
  682. find_package(Catch2)
  683. CMake provides a FindGTest module which defines some variables that older
  684. projects may use instead of linking to the imported targets. To support
  685. those cases, we can provide an extra file. In keeping with the
  686. "first to define, wins" philosophy of ``FetchContent``, we only write out
  687. that file if something else hasn't already done so.
  688. .. code-block:: cmake
  689. FetchContent_MakeAvailable(googletest)
  690. if(NOT EXISTS ${CMAKE_FIND_PACKAGE_REDIRECTS_DIR}/googletest-extra.cmake AND
  691. NOT EXISTS ${CMAKE_FIND_PACKAGE_REDIRECTS_DIR}/googletestExtra.cmake)
  692. file(WRITE ${CMAKE_FIND_PACKAGE_REDIRECTS_DIR}/googletest-extra.cmake
  693. [=[
  694. if("${GTEST_LIBRARIES}" STREQUAL "" AND TARGET GTest::gtest)
  695. set(GTEST_LIBRARIES GTest::gtest)
  696. endif()
  697. if("${GTEST_MAIN_LIBRARIES}" STREQUAL "" AND TARGET GTest::gtest_main)
  698. set(GTEST_MAIN_LIBRARIES GTest::gtest_main)
  699. endif()
  700. if("${GTEST_BOTH_LIBRARIES}" STREQUAL "")
  701. set(GTEST_BOTH_LIBRARIES ${GTEST_LIBRARIES} ${GTEST_MAIN_LIBRARIES})
  702. endif()
  703. ]=])
  704. endif()
  705. Projects will also likely be using ``find_package(GTest)`` rather than
  706. ``find_package(googletest)``, but it is possible to make use of the
  707. :variable:`CMAKE_FIND_PACKAGE_REDIRECTS_DIR` area to pull in the latter as
  708. a dependency of the former. This is likely to be sufficient to satisfy
  709. a typical ``find_package(GTest)`` call.
  710. .. code-block:: cmake
  711. FetchContent_MakeAvailable(googletest)
  712. if(NOT EXISTS ${CMAKE_FIND_PACKAGE_REDIRECTS_DIR}/gtest-config.cmake AND
  713. NOT EXISTS ${CMAKE_FIND_PACKAGE_REDIRECTS_DIR}/GTestConfig.cmake)
  714. file(WRITE ${CMAKE_FIND_PACKAGE_REDIRECTS_DIR}/gtest-config.cmake
  715. [=[
  716. include(CMakeFindDependencyMacro)
  717. find_dependency(googletest)
  718. ]=])
  719. endif()
  720. if(NOT EXISTS ${CMAKE_FIND_PACKAGE_REDIRECTS_DIR}/gtest-config-version.cmake AND
  721. NOT EXISTS ${CMAKE_FIND_PACKAGE_REDIRECTS_DIR}/GTestConfigVersion.cmake)
  722. file(WRITE ${CMAKE_FIND_PACKAGE_REDIRECTS_DIR}/gtest-config-version.cmake
  723. [=[
  724. include(${CMAKE_FIND_PACKAGE_REDIRECTS_DIR}/googletest-config-version.cmake OPTIONAL)
  725. if(NOT PACKAGE_VERSION_COMPATIBLE)
  726. include(${CMAKE_FIND_PACKAGE_REDIRECTS_DIR}/googletestConfigVersion.cmake OPTIONAL)
  727. endif()
  728. ]=])
  729. endif()
  730. Overriding Where To Find CMakeLists.txt
  731. """""""""""""""""""""""""""""""""""""""
  732. If the sub-project's ``CMakeLists.txt`` file is not at the top level of its
  733. source tree, the ``SOURCE_SUBDIR`` option can be used to tell ``FetchContent``
  734. where to find it. The following example shows how to use that option, and
  735. it also sets a variable which is meaningful to the subproject before pulling
  736. it into the main build (set as an ``INTERNAL`` cache variable to avoid
  737. problems with policy :policy:`CMP0077`):
  738. .. code-block:: cmake
  739. include(FetchContent)
  740. FetchContent_Declare(
  741. protobuf
  742. GIT_REPOSITORY https://github.com/protocolbuffers/protobuf.git
  743. GIT_TAG ae50d9b9902526efd6c7a1907d09739f959c6297 # v3.15.0
  744. SOURCE_SUBDIR cmake
  745. )
  746. set(protobuf_BUILD_TESTS OFF CACHE INTERNAL "")
  747. FetchContent_MakeAvailable(protobuf)
  748. Complex Dependency Hierarchies
  749. """"""""""""""""""""""""""""""
  750. In more complex project hierarchies, the dependency relationships can be more
  751. complicated. Consider a hierarchy where ``projA`` is the top level project and
  752. it depends directly on projects ``projB`` and ``projC``. Both ``projB`` and
  753. ``projC`` can be built standalone and they also both depend on another project
  754. ``projD``. ``projB`` additionally depends on ``projE``. This example assumes
  755. that all five projects are available on a company git server. The
  756. ``CMakeLists.txt`` of each project might have sections like the following:
  757. .. code-block:: cmake
  758. :caption: *projA*
  759. include(FetchContent)
  760. FetchContent_Declare(
  761. projB
  762. GIT_REPOSITORY [email protected]:git/projB.git
  763. GIT_TAG 4a89dc7e24ff212a7b5167bef7ab079d
  764. )
  765. FetchContent_Declare(
  766. projC
  767. GIT_REPOSITORY [email protected]:git/projC.git
  768. GIT_TAG 4ad4016bd1d8d5412d135cf8ceea1bb9
  769. )
  770. FetchContent_Declare(
  771. projD
  772. GIT_REPOSITORY [email protected]:git/projD.git
  773. GIT_TAG origin/integrationBranch
  774. )
  775. FetchContent_Declare(
  776. projE
  777. GIT_REPOSITORY [email protected]:git/projE.git
  778. GIT_TAG v2.3-rc1
  779. )
  780. # Order is important, see notes in the discussion further below
  781. FetchContent_MakeAvailable(projD projB projC)
  782. .. code-block:: cmake
  783. :caption: *projB*
  784. include(FetchContent)
  785. FetchContent_Declare(
  786. projD
  787. GIT_REPOSITORY [email protected]:git/projD.git
  788. GIT_TAG 20b415f9034bbd2a2e8216e9a5c9e632
  789. )
  790. FetchContent_Declare(
  791. projE
  792. GIT_REPOSITORY [email protected]:git/projE.git
  793. GIT_TAG 68e20f674a48be38d60e129f600faf7d
  794. )
  795. FetchContent_MakeAvailable(projD projE)
  796. .. code-block:: cmake
  797. :caption: *projC*
  798. include(FetchContent)
  799. FetchContent_Declare(
  800. projD
  801. GIT_REPOSITORY [email protected]:git/projD.git
  802. GIT_TAG 7d9a17ad2c962aa13e2fbb8043fb6b8a
  803. )
  804. # This particular version of projD requires workarounds
  805. FetchContent_GetProperties(projD)
  806. if(NOT projd_POPULATED)
  807. FetchContent_Populate(projD)
  808. # Copy an additional/replacement file into the populated source
  809. file(COPY someFile.c DESTINATION ${projd_SOURCE_DIR}/src)
  810. add_subdirectory(${projd_SOURCE_DIR} ${projd_BINARY_DIR})
  811. endif()
  812. A few key points should be noted in the above:
  813. - ``projB`` and ``projC`` define different content details for ``projD``,
  814. but ``projA`` also defines a set of content details for ``projD``.
  815. Because ``projA`` will define them first, the details from ``projB`` and
  816. ``projC`` will not be used. The override details defined by ``projA``
  817. are not required to match either of those from ``projB`` or ``projC``, but
  818. it is up to the higher level project to ensure that the details it does
  819. define still make sense for the child projects.
  820. - In the ``projA`` call to :command:`FetchContent_MakeAvailable`, ``projD``
  821. is listed ahead of ``projB`` and ``projC`` to ensure that ``projA`` is in
  822. control of how ``projD`` is populated.
  823. - While ``projA`` defines content details for ``projE``, it does not need
  824. to explicitly call ``FetchContent_MakeAvailable(projE)`` or
  825. ``FetchContent_Populate(projD)`` itself. Instead, it leaves that to the
  826. child ``projB``. For higher level projects, it is often enough to just
  827. define the override content details and leave the actual population to the
  828. child projects. This saves repeating the same thing at each level of the
  829. project hierarchy unnecessarily.
  830. Populating Content Without Adding It To The Build
  831. """""""""""""""""""""""""""""""""""""""""""""""""
  832. Projects don't always need to add the populated content to the build.
  833. Sometimes the project just wants to make the downloaded content available at
  834. a predictable location. The next example ensures that a set of standard
  835. company toolchain files (and potentially even the toolchain binaries
  836. themselves) is available early enough to be used for that same build.
  837. .. code-block:: cmake
  838. cmake_minimum_required(VERSION 3.14)
  839. include(FetchContent)
  840. FetchContent_Declare(
  841. mycom_toolchains
  842. URL https://intranet.mycompany.com//toolchains_1.3.2.tar.gz
  843. )
  844. FetchContent_MakeAvailable(mycom_toolchains)
  845. project(CrossCompileExample)
  846. The project could be configured to use one of the downloaded toolchains like
  847. so:
  848. .. code-block:: shell
  849. cmake -DCMAKE_TOOLCHAIN_FILE=_deps/mycom_toolchains-src/toolchain_arm.cmake /path/to/src
  850. When CMake processes the ``CMakeLists.txt`` file, it will download and unpack
  851. the tarball into ``_deps/mycompany_toolchains-src`` relative to the build
  852. directory. The :variable:`CMAKE_TOOLCHAIN_FILE` variable is not used until
  853. the :command:`project` command is reached, at which point CMake looks for the
  854. named toolchain file relative to the build directory. Because the tarball has
  855. already been downloaded and unpacked by then, the toolchain file will be in
  856. place, even the very first time that :program:`cmake` is run in the build directory.
  857. Populating Content In CMake Script Mode
  858. """""""""""""""""""""""""""""""""""""""
  859. This last example demonstrates how one might download and unpack a
  860. firmware tarball using CMake's :manual:`script mode <cmake(1)>`. The call to
  861. :command:`FetchContent_Populate` specifies all the content details and the
  862. unpacked firmware will be placed in a ``firmware`` directory below the
  863. current working directory.
  864. .. code-block:: cmake
  865. :caption: :file:`getFirmware.cmake`
  866. # NOTE: Intended to be run in script mode with cmake -P
  867. include(FetchContent)
  868. FetchContent_Populate(
  869. firmware
  870. URL https://mycompany.com/assets/firmware-1.23-arm.tar.gz
  871. URL_HASH MD5=68247684da89b608d466253762b0ff11
  872. SOURCE_DIR firmware
  873. )
  874. #]=======================================================================]
  875. #=======================================================================
  876. # Recording and retrieving content details for later population
  877. #=======================================================================
  878. # Internal use, projects must not call this directly. It is
  879. # intended for use by FetchContent_Declare() only.
  880. #
  881. # Sets a content-specific global property (not meant for use
  882. # outside of functions defined here in this file) which can later
  883. # be retrieved using __FetchContent_getSavedDetails() with just the
  884. # same content name. If there is already a value stored in the
  885. # property, it is left unchanged and this call has no effect.
  886. # This allows parent projects to define the content details,
  887. # overriding anything a child project may try to set (properties
  888. # are not cached between runs, so the first thing to set it in a
  889. # build will be in control).
  890. function(__FetchContent_declareDetails contentName)
  891. string(TOLOWER ${contentName} contentNameLower)
  892. set(savedDetailsPropertyName "_FetchContent_${contentNameLower}_savedDetails")
  893. get_property(alreadyDefined GLOBAL PROPERTY ${savedDetailsPropertyName} DEFINED)
  894. if(alreadyDefined)
  895. return()
  896. endif()
  897. if("${FETCHCONTENT_TRY_FIND_PACKAGE_MODE}" STREQUAL "ALWAYS")
  898. set(__tryFindPackage TRUE)
  899. set(__tryFindPackageAllowed TRUE)
  900. elseif("${FETCHCONTENT_TRY_FIND_PACKAGE_MODE}" STREQUAL "NEVER")
  901. set(__tryFindPackage FALSE)
  902. set(__tryFindPackageAllowed FALSE)
  903. elseif("${FETCHCONTENT_TRY_FIND_PACKAGE_MODE}" STREQUAL "OPT_IN" OR
  904. NOT DEFINED FETCHCONTENT_TRY_FIND_PACKAGE_MODE)
  905. set(__tryFindPackage FALSE)
  906. set(__tryFindPackageAllowed TRUE)
  907. else()
  908. message(FATAL_ERROR
  909. "Unsupported value for FETCHCONTENT_TRY_FIND_PACKAGE_MODE: "
  910. "${FETCHCONTENT_TRY_FIND_PACKAGE_MODE}"
  911. )
  912. endif()
  913. set(__cmdArgs)
  914. set(__findPackageArgs)
  915. set(__sawQuietKeyword NO)
  916. set(__sawGlobalKeyword NO)
  917. foreach(__item IN LISTS ARGN)
  918. if(DEFINED __findPackageArgs)
  919. # All remaining args are for find_package()
  920. string(APPEND __findPackageArgs " [==[${__item}]==]")
  921. if(__item STREQUAL "QUIET")
  922. set(__sawQuietKeyword YES)
  923. elseif(__item STREQUAL "GLOBAL")
  924. set(__sawGlobalKeyword YES)
  925. endif()
  926. continue()
  927. endif()
  928. # Still processing non-find_package() args
  929. if(__item STREQUAL "FIND_PACKAGE_ARGS")
  930. if(__tryFindPackageAllowed)
  931. set(__tryFindPackage TRUE)
  932. endif()
  933. # All arguments after this keyword are for find_package(). Define the
  934. # variable but with an empty value initially. This allows us to check
  935. # at the start of the loop whether to store remaining items in this
  936. # variable or not. Note that there could be no more args, which is still
  937. # a valid case because we automatically provide ${contentName} as the
  938. # package name and there may not need to be any further arguments.
  939. set(__findPackageArgs "")
  940. continue() # Don't store this item
  941. elseif(__item STREQUAL "OVERRIDE_FIND_PACKAGE")
  942. set(__tryFindPackageAllowed FALSE)
  943. # Define a separate dedicated property for find_package() to check
  944. # in its implementation. This will be a placeholder until FetchContent
  945. # actually does the population. After that, we will have created a
  946. # stand-in config file that find_package() will pick up instead.
  947. set(propertyName "_FetchContent_${contentNameLower}_override_find_package")
  948. define_property(GLOBAL PROPERTY ${propertyName})
  949. set_property(GLOBAL PROPERTY ${propertyName} TRUE)
  950. endif()
  951. string(APPEND __cmdArgs " [==[${__item}]==]")
  952. endforeach()
  953. define_property(GLOBAL PROPERTY ${savedDetailsPropertyName})
  954. cmake_language(EVAL CODE
  955. "set_property(GLOBAL PROPERTY ${savedDetailsPropertyName} ${__cmdArgs})"
  956. )
  957. if(__tryFindPackage AND __tryFindPackageAllowed)
  958. set(propertyName "_FetchContent_${contentNameLower}_find_package_args")
  959. define_property(GLOBAL PROPERTY ${propertyName})
  960. if(NOT __sawQuietKeyword)
  961. list(INSERT __findPackageArgs 0 QUIET)
  962. endif()
  963. if(CMAKE_FIND_PACKAGE_TARGETS_GLOBAL AND NOT __sawGlobalKeyword)
  964. list(APPEND __findPackageArgs GLOBAL)
  965. endif()
  966. cmake_language(EVAL CODE
  967. "set_property(GLOBAL PROPERTY ${propertyName} ${__findPackageArgs})"
  968. )
  969. endif()
  970. endfunction()
  971. # Internal use, projects must not call this directly. It is
  972. # intended for use by the FetchContent_Declare() function.
  973. #
  974. # Retrieves details saved for the specified content in an
  975. # earlier call to __FetchContent_declareDetails().
  976. function(__FetchContent_getSavedDetails contentName outVar)
  977. string(TOLOWER ${contentName} contentNameLower)
  978. set(propertyName "_FetchContent_${contentNameLower}_savedDetails")
  979. get_property(alreadyDefined GLOBAL PROPERTY ${propertyName} DEFINED)
  980. if(NOT alreadyDefined)
  981. message(FATAL_ERROR "No content details recorded for ${contentName}")
  982. endif()
  983. get_property(propertyValue GLOBAL PROPERTY ${propertyName})
  984. set(${outVar} "${propertyValue}" PARENT_SCOPE)
  985. endfunction()
  986. # Saves population details of the content, sets defaults for the
  987. # SOURCE_DIR and BUILD_DIR.
  988. function(FetchContent_Declare contentName)
  989. # Always check this even if we won't save these details.
  990. # This helps projects catch errors earlier.
  991. # Avoid using if(... IN_LIST ...) so we don't have to alter policy settings
  992. list(FIND ARGN OVERRIDE_FIND_PACKAGE index_OVERRIDE_FIND_PACKAGE)
  993. list(FIND ARGN FIND_PACKAGE_ARGS index_FIND_PACKAGE_ARGS)
  994. if(index_OVERRIDE_FIND_PACKAGE GREATER_EQUAL 0 AND
  995. index_FIND_PACKAGE_ARGS GREATER_EQUAL 0)
  996. message(FATAL_ERROR
  997. "Cannot specify both OVERRIDE_FIND_PACKAGE and FIND_PACKAGE_ARGS "
  998. "when declaring details for ${contentName}"
  999. )
  1000. endif()
  1001. # Because we are only looking for a subset of the supported keywords, we
  1002. # cannot check for multi-value arguments with this method. We will have to
  1003. # handle the URL keyword differently.
  1004. set(oneValueArgs
  1005. SVN_REPOSITORY
  1006. DOWNLOAD_NO_EXTRACT
  1007. DOWNLOAD_EXTRACT_TIMESTAMP
  1008. BINARY_DIR
  1009. SOURCE_DIR
  1010. )
  1011. cmake_parse_arguments(PARSE_ARGV 1 ARG "" "${oneValueArgs}" "")
  1012. string(TOLOWER ${contentName} contentNameLower)
  1013. if(NOT ARG_BINARY_DIR)
  1014. set(ARG_BINARY_DIR "${FETCHCONTENT_BASE_DIR}/${contentNameLower}-build")
  1015. endif()
  1016. if(NOT ARG_SOURCE_DIR)
  1017. set(ARG_SOURCE_DIR "${FETCHCONTENT_BASE_DIR}/${contentNameLower}-src")
  1018. endif()
  1019. if(ARG_SVN_REPOSITORY)
  1020. # Add a hash of the svn repository URL to the source dir. This works
  1021. # around the problem where if the URL changes, the download would
  1022. # fail because it tries to checkout/update rather than switch the
  1023. # old URL to the new one. We limit the hash to the first 7 characters
  1024. # so that the source path doesn't get overly long (which can be a
  1025. # problem on windows due to path length limits).
  1026. string(SHA1 urlSHA ${ARG_SVN_REPOSITORY})
  1027. string(SUBSTRING ${urlSHA} 0 7 urlSHA)
  1028. string(APPEND ARG_SOURCE_DIR "-${urlSHA}")
  1029. endif()
  1030. # The ExternalProject_Add() call in the sub-build won't see the CMP0135
  1031. # policy setting of our caller. Work out if that policy will be needed and
  1032. # explicitly set the relevant option if not already provided. The condition
  1033. # here is essentially an abbreviated version of the logic in
  1034. # ExternalProject's _ep_add_download_command() function.
  1035. if(NOT ARG_DOWNLOAD_NO_EXTRACT AND
  1036. NOT DEFINED ARG_DOWNLOAD_EXTRACT_TIMESTAMP)
  1037. list(FIND ARGN URL urlIndex)
  1038. if(urlIndex GREATER_EQUAL 0)
  1039. math(EXPR urlIndex "${urlIndex} + 1")
  1040. list(LENGTH ARGN numArgs)
  1041. if(urlIndex GREATER_EQUAL numArgs)
  1042. message(FATAL_ERROR
  1043. "URL keyword needs to be followed by at least one URL"
  1044. )
  1045. endif()
  1046. # If we have multiple URLs, none of them are allowed to be local paths.
  1047. # Therefore, we can test just the first URL, and if it is non-local, so
  1048. # will be the others if there are more.
  1049. list(GET ARGN ${urlIndex} firstUrl)
  1050. if(NOT IS_DIRECTORY "${firstUrl}")
  1051. cmake_policy(GET CMP0135 _FETCHCONTENT_CMP0135
  1052. PARENT_SCOPE # undocumented, do not use outside of CMake
  1053. )
  1054. if(_FETCHCONTENT_CMP0135 STREQUAL "")
  1055. message(AUTHOR_WARNING
  1056. "The DOWNLOAD_EXTRACT_TIMESTAMP option was not given and policy "
  1057. "CMP0135 is not set. The policy's OLD behavior will be used. "
  1058. "When using a URL download, the timestamps of extracted files "
  1059. "should preferably be that of the time of extraction, otherwise "
  1060. "code that depends on the extracted contents might not be "
  1061. "rebuilt if the URL changes. The OLD behavior preserves the "
  1062. "timestamps from the archive instead, but this is usually not "
  1063. "what you want. Update your project to the NEW behavior or "
  1064. "specify the DOWNLOAD_EXTRACT_TIMESTAMP option with a value of "
  1065. "true to avoid this robustness issue."
  1066. )
  1067. set(ARG_DOWNLOAD_EXTRACT_TIMESTAMP TRUE)
  1068. elseif(_FETCHCONTENT_CMP0135 STREQUAL "NEW")
  1069. set(ARG_DOWNLOAD_EXTRACT_TIMESTAMP FALSE)
  1070. else()
  1071. set(ARG_DOWNLOAD_EXTRACT_TIMESTAMP TRUE)
  1072. endif()
  1073. endif()
  1074. endif()
  1075. endif()
  1076. # Add back in the keyword args we pulled out and potentially tweaked/added
  1077. foreach(key IN LISTS oneValueArgs)
  1078. if(DEFINED ARG_${key})
  1079. list(PREPEND ARG_UNPARSED_ARGUMENTS ${key} "${ARG_${key}}")
  1080. endif()
  1081. endforeach()
  1082. set(__argsQuoted)
  1083. foreach(__item IN LISTS ARG_UNPARSED_ARGUMENTS)
  1084. string(APPEND __argsQuoted " [==[${__item}]==]")
  1085. endforeach()
  1086. cmake_language(EVAL CODE
  1087. "__FetchContent_declareDetails(${contentNameLower} ${__argsQuoted})"
  1088. )
  1089. endfunction()
  1090. #=======================================================================
  1091. # Set/get whether the specified content has been populated yet.
  1092. # The setter also records the source and binary dirs used.
  1093. #=======================================================================
  1094. # Semi-internal use. Projects must not call this directly. Dependency
  1095. # providers must call it if they satisfy a request made with the
  1096. # FETCHCONTENT_MAKEAVAILABLE_SERIAL method (that is the only permitted
  1097. # place to call it outside of the FetchContent module).
  1098. function(FetchContent_SetPopulated contentName)
  1099. cmake_parse_arguments(PARSE_ARGV 1 arg
  1100. ""
  1101. "SOURCE_DIR;BINARY_DIR"
  1102. ""
  1103. )
  1104. if(NOT "${arg_UNPARSED_ARGUMENTS}" STREQUAL "")
  1105. message(FATAL_ERROR "Unsupported arguments: ${arg_UNPARSED_ARGUMENTS}")
  1106. endif()
  1107. string(TOLOWER ${contentName} contentNameLower)
  1108. set(prefix "_FetchContent_${contentNameLower}")
  1109. set(propertyName "${prefix}_sourceDir")
  1110. define_property(GLOBAL PROPERTY ${propertyName})
  1111. if("${arg_SOURCE_DIR}" STREQUAL "")
  1112. # Don't discard a previously provided SOURCE_DIR
  1113. get_property(arg_SOURCE_DIR GLOBAL PROPERTY ${propertyName})
  1114. endif()
  1115. set_property(GLOBAL PROPERTY ${propertyName} "${arg_SOURCE_DIR}")
  1116. set(propertyName "${prefix}_binaryDir")
  1117. define_property(GLOBAL PROPERTY ${propertyName})
  1118. if("${arg_BINARY_DIR}" STREQUAL "")
  1119. # Don't discard a previously provided BINARY_DIR
  1120. get_property(arg_BINARY_DIR GLOBAL PROPERTY ${propertyName})
  1121. endif()
  1122. set_property(GLOBAL PROPERTY ${propertyName} "${arg_BINARY_DIR}")
  1123. set(propertyName "${prefix}_populated")
  1124. define_property(GLOBAL PROPERTY ${propertyName})
  1125. set_property(GLOBAL PROPERTY ${propertyName} TRUE)
  1126. endfunction()
  1127. # Set variables in the calling scope for any of the retrievable
  1128. # properties. If no specific properties are requested, variables
  1129. # will be set for all retrievable properties.
  1130. #
  1131. # This function is intended to also be used by projects as the canonical
  1132. # way to detect whether they should call FetchContent_Populate()
  1133. # and pull the populated source into the build with add_subdirectory(),
  1134. # if they are using the populated content in that way.
  1135. function(FetchContent_GetProperties contentName)
  1136. string(TOLOWER ${contentName} contentNameLower)
  1137. set(options "")
  1138. set(oneValueArgs SOURCE_DIR BINARY_DIR POPULATED)
  1139. set(multiValueArgs "")
  1140. cmake_parse_arguments(ARG "${options}" "${oneValueArgs}" "${multiValueArgs}" ${ARGN})
  1141. if(NOT ARG_SOURCE_DIR AND
  1142. NOT ARG_BINARY_DIR AND
  1143. NOT ARG_POPULATED)
  1144. # No specific properties requested, provide them all
  1145. set(ARG_SOURCE_DIR ${contentNameLower}_SOURCE_DIR)
  1146. set(ARG_BINARY_DIR ${contentNameLower}_BINARY_DIR)
  1147. set(ARG_POPULATED ${contentNameLower}_POPULATED)
  1148. endif()
  1149. set(prefix "_FetchContent_${contentNameLower}")
  1150. if(ARG_SOURCE_DIR)
  1151. set(propertyName "${prefix}_sourceDir")
  1152. get_property(value GLOBAL PROPERTY ${propertyName})
  1153. if(value)
  1154. set(${ARG_SOURCE_DIR} ${value} PARENT_SCOPE)
  1155. endif()
  1156. endif()
  1157. if(ARG_BINARY_DIR)
  1158. set(propertyName "${prefix}_binaryDir")
  1159. get_property(value GLOBAL PROPERTY ${propertyName})
  1160. if(value)
  1161. set(${ARG_BINARY_DIR} ${value} PARENT_SCOPE)
  1162. endif()
  1163. endif()
  1164. if(ARG_POPULATED)
  1165. set(propertyName "${prefix}_populated")
  1166. get_property(value GLOBAL PROPERTY ${propertyName} DEFINED)
  1167. set(${ARG_POPULATED} ${value} PARENT_SCOPE)
  1168. endif()
  1169. endfunction()
  1170. #=======================================================================
  1171. # Performing the population
  1172. #=======================================================================
  1173. # The value of contentName will always have been lowercased by the caller.
  1174. # All other arguments are assumed to be options that are understood by
  1175. # ExternalProject_Add(), except for QUIET and SUBBUILD_DIR.
  1176. function(__FetchContent_directPopulate contentName)
  1177. set(options
  1178. QUIET
  1179. # SYSTEM has no meaning for ExternalProject, it is only used by us in
  1180. # FetchContent_MakeAvailable(). We need to parse and discard it here.
  1181. SYSTEM
  1182. )
  1183. set(oneValueArgs
  1184. SUBBUILD_DIR
  1185. SOURCE_DIR
  1186. BINARY_DIR
  1187. # We need special processing if DOWNLOAD_NO_EXTRACT is true
  1188. DOWNLOAD_NO_EXTRACT
  1189. # Prevent the following from being passed through
  1190. CONFIGURE_COMMAND
  1191. BUILD_COMMAND
  1192. INSTALL_COMMAND
  1193. TEST_COMMAND
  1194. # We force these to be ON since we are always executing serially
  1195. # and we want all steps to have access to the terminal in case they
  1196. # need input from the command line (e.g. ask for a private key password)
  1197. # or they want to provide timely progress. We silently absorb and
  1198. # discard these if they are set by the caller.
  1199. USES_TERMINAL_DOWNLOAD
  1200. USES_TERMINAL_UPDATE
  1201. USES_TERMINAL_PATCH
  1202. )
  1203. set(multiValueArgs "")
  1204. cmake_parse_arguments(PARSE_ARGV 1 ARG
  1205. "${options}" "${oneValueArgs}" "${multiValueArgs}")
  1206. if(NOT ARG_SUBBUILD_DIR)
  1207. message(FATAL_ERROR "Internal error: SUBBUILD_DIR not set")
  1208. elseif(NOT IS_ABSOLUTE "${ARG_SUBBUILD_DIR}")
  1209. set(ARG_SUBBUILD_DIR "${CMAKE_CURRENT_BINARY_DIR}/${ARG_SUBBUILD_DIR}")
  1210. endif()
  1211. if(NOT ARG_SOURCE_DIR)
  1212. message(FATAL_ERROR "Internal error: SOURCE_DIR not set")
  1213. elseif(NOT IS_ABSOLUTE "${ARG_SOURCE_DIR}")
  1214. set(ARG_SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/${ARG_SOURCE_DIR}")
  1215. endif()
  1216. if(NOT ARG_BINARY_DIR)
  1217. message(FATAL_ERROR "Internal error: BINARY_DIR not set")
  1218. elseif(NOT IS_ABSOLUTE "${ARG_BINARY_DIR}")
  1219. set(ARG_BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/${ARG_BINARY_DIR}")
  1220. endif()
  1221. # Ensure the caller can know where to find the source and build directories
  1222. # with some convenient variables. Doing this here ensures the caller sees
  1223. # the correct result in the case where the default values are overridden by
  1224. # the content details set by the project.
  1225. set(${contentName}_SOURCE_DIR "${ARG_SOURCE_DIR}" PARENT_SCOPE)
  1226. set(${contentName}_BINARY_DIR "${ARG_BINARY_DIR}" PARENT_SCOPE)
  1227. # The unparsed arguments may contain spaces, so build up ARG_EXTRA
  1228. # in such a way that it correctly substitutes into the generated
  1229. # CMakeLists.txt file with each argument quoted.
  1230. unset(ARG_EXTRA)
  1231. foreach(arg IN LISTS ARG_UNPARSED_ARGUMENTS)
  1232. set(ARG_EXTRA "${ARG_EXTRA} \"${arg}\"")
  1233. endforeach()
  1234. if(ARG_DOWNLOAD_NO_EXTRACT)
  1235. set(ARG_EXTRA "${ARG_EXTRA} DOWNLOAD_NO_EXTRACT YES")
  1236. set(__FETCHCONTENT_COPY_FILE
  1237. "
  1238. ExternalProject_Get_Property(${contentName}-populate DOWNLOADED_FILE)
  1239. get_filename_component(dlFileName \"\${DOWNLOADED_FILE}\" NAME)
  1240. ExternalProject_Add_Step(${contentName}-populate copyfile
  1241. COMMAND \"${CMAKE_COMMAND}\" -E copy_if_different
  1242. \"<DOWNLOADED_FILE>\" \"${ARG_SOURCE_DIR}\"
  1243. DEPENDEES patch
  1244. DEPENDERS configure
  1245. BYPRODUCTS \"${ARG_SOURCE_DIR}/\${dlFileName}\"
  1246. COMMENT \"Copying file to SOURCE_DIR\"
  1247. )
  1248. ")
  1249. else()
  1250. unset(__FETCHCONTENT_COPY_FILE)
  1251. endif()
  1252. # Hide output if requested, but save it to a variable in case there's an
  1253. # error so we can show the output upon failure. When not quiet, don't
  1254. # capture the output to a variable because the user may want to see the
  1255. # output as it happens (e.g. progress during long downloads). Combine both
  1256. # stdout and stderr in the one capture variable so the output stays in order.
  1257. if (ARG_QUIET)
  1258. set(outputOptions
  1259. OUTPUT_VARIABLE capturedOutput
  1260. ERROR_VARIABLE capturedOutput
  1261. )
  1262. else()
  1263. set(capturedOutput)
  1264. set(outputOptions)
  1265. message(STATUS "Populating ${contentName}")
  1266. endif()
  1267. if(CMAKE_GENERATOR)
  1268. set(subCMakeOpts "-G${CMAKE_GENERATOR}")
  1269. if(CMAKE_GENERATOR_PLATFORM)
  1270. list(APPEND subCMakeOpts "-A${CMAKE_GENERATOR_PLATFORM}")
  1271. endif()
  1272. if(CMAKE_GENERATOR_TOOLSET)
  1273. list(APPEND subCMakeOpts "-T${CMAKE_GENERATOR_TOOLSET}")
  1274. endif()
  1275. if(CMAKE_GENERATOR_INSTANCE)
  1276. list(APPEND subCMakeOpts "-DCMAKE_GENERATOR_INSTANCE:INTERNAL=${CMAKE_GENERATOR_INSTANCE}")
  1277. endif()
  1278. if(CMAKE_MAKE_PROGRAM)
  1279. list(APPEND subCMakeOpts "-DCMAKE_MAKE_PROGRAM:FILEPATH=${CMAKE_MAKE_PROGRAM}")
  1280. endif()
  1281. # Override the sub-build's configuration types for multi-config generators.
  1282. # This ensures we are not affected by any custom setting from the project
  1283. # and can always request a known configuration further below.
  1284. get_property(is_multi_config GLOBAL PROPERTY GENERATOR_IS_MULTI_CONFIG)
  1285. if(is_multi_config)
  1286. list(APPEND subCMakeOpts "-DCMAKE_CONFIGURATION_TYPES:STRING=Debug")
  1287. endif()
  1288. else()
  1289. # Likely we've been invoked via CMake's script mode where no
  1290. # generator is set (and hence CMAKE_MAKE_PROGRAM could not be
  1291. # trusted even if provided). We will have to rely on being
  1292. # able to find the default generator and build tool.
  1293. unset(subCMakeOpts)
  1294. endif()
  1295. set(__FETCHCONTENT_CACHED_INFO "")
  1296. set(__passthrough_vars
  1297. CMAKE_EP_GIT_REMOTE_UPDATE_STRATEGY
  1298. CMAKE_TLS_VERIFY
  1299. CMAKE_TLS_CAINFO
  1300. CMAKE_NETRC
  1301. CMAKE_NETRC_FILE
  1302. )
  1303. foreach(var IN LISTS __passthrough_vars)
  1304. if(DEFINED ${var})
  1305. # Embed directly in the generated CMakeLists.txt file to avoid making
  1306. # the cmake command line excessively long. It also makes debugging and
  1307. # testing easier.
  1308. string(APPEND __FETCHCONTENT_CACHED_INFO "set(${var} [==[${${var}}]==])\n")
  1309. endif()
  1310. endforeach()
  1311. # Avoid using if(... IN_LIST ...) so we don't have to alter policy settings
  1312. list(FIND ARG_UNPARSED_ARGUMENTS GIT_REPOSITORY indexResult)
  1313. if(indexResult GREATER_EQUAL 0)
  1314. find_package(Git QUIET)
  1315. string(APPEND __FETCHCONTENT_CACHED_INFO "
  1316. # Pass through things we've already detected in the main project to avoid
  1317. # paying the cost of redetecting them again in ExternalProject_Add()
  1318. set(GIT_EXECUTABLE [==[${GIT_EXECUTABLE}]==])
  1319. set(GIT_VERSION_STRING [==[${GIT_VERSION_STRING}]==])
  1320. set_property(GLOBAL PROPERTY _CMAKE_FindGit_GIT_EXECUTABLE_VERSION
  1321. [==[${GIT_EXECUTABLE};${GIT_VERSION_STRING}]==]
  1322. )
  1323. ")
  1324. endif()
  1325. # Create and build a separate CMake project to carry out the population.
  1326. # If we've already previously done these steps, they will not cause
  1327. # anything to be updated, so extra rebuilds of the project won't occur.
  1328. # Make sure to pass through CMAKE_MAKE_PROGRAM in case the main project
  1329. # has this set to something not findable on the PATH. We also ensured above
  1330. # that the Debug config will be defined for multi-config generators.
  1331. configure_file("${CMAKE_CURRENT_FUNCTION_LIST_DIR}/FetchContent/CMakeLists.cmake.in"
  1332. "${ARG_SUBBUILD_DIR}/CMakeLists.txt")
  1333. execute_process(
  1334. COMMAND ${CMAKE_COMMAND} ${subCMakeOpts} .
  1335. RESULT_VARIABLE result
  1336. ${outputOptions}
  1337. WORKING_DIRECTORY "${ARG_SUBBUILD_DIR}"
  1338. )
  1339. if(result)
  1340. if(capturedOutput)
  1341. message("${capturedOutput}")
  1342. endif()
  1343. message(FATAL_ERROR "CMake step for ${contentName} failed: ${result}")
  1344. endif()
  1345. execute_process(
  1346. COMMAND ${CMAKE_COMMAND} --build . --config Debug
  1347. RESULT_VARIABLE result
  1348. ${outputOptions}
  1349. WORKING_DIRECTORY "${ARG_SUBBUILD_DIR}"
  1350. )
  1351. if(result)
  1352. if(capturedOutput)
  1353. message("${capturedOutput}")
  1354. endif()
  1355. message(FATAL_ERROR "Build step for ${contentName} failed: ${result}")
  1356. endif()
  1357. endfunction()
  1358. option(FETCHCONTENT_FULLY_DISCONNECTED "Disables all attempts to download or update content and assumes source dirs already exist")
  1359. option(FETCHCONTENT_UPDATES_DISCONNECTED "Enables UPDATE_DISCONNECTED behavior for all content population")
  1360. option(FETCHCONTENT_QUIET "Enables QUIET option for all content population" ON)
  1361. set(FETCHCONTENT_BASE_DIR "${CMAKE_BINARY_DIR}/_deps" CACHE PATH "Directory under which to collect all populated content")
  1362. # Populate the specified content using details stored from
  1363. # an earlier call to FetchContent_Declare().
  1364. function(FetchContent_Populate contentName)
  1365. if(NOT contentName)
  1366. message(FATAL_ERROR "Empty contentName not allowed for FetchContent_Populate()")
  1367. endif()
  1368. string(TOLOWER ${contentName} contentNameLower)
  1369. if(ARGN)
  1370. # This is the direct population form with details fully specified
  1371. # as part of the call, so we already have everything we need
  1372. __FetchContent_directPopulate(
  1373. ${contentNameLower}
  1374. SUBBUILD_DIR "${CMAKE_CURRENT_BINARY_DIR}/${contentNameLower}-subbuild"
  1375. SOURCE_DIR "${CMAKE_CURRENT_BINARY_DIR}/${contentNameLower}-src"
  1376. BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/${contentNameLower}-build"
  1377. ${ARGN} # Could override any of the above ..._DIR variables
  1378. )
  1379. # Pass source and binary dir variables back to the caller
  1380. set(${contentNameLower}_SOURCE_DIR "${${contentNameLower}_SOURCE_DIR}" PARENT_SCOPE)
  1381. set(${contentNameLower}_BINARY_DIR "${${contentNameLower}_BINARY_DIR}" PARENT_SCOPE)
  1382. # Don't set global properties, or record that we did this population, since
  1383. # this was a direct call outside of the normal declared details form.
  1384. # We only want to save values in the global properties for content that
  1385. # honors the hierarchical details mechanism so that projects are not
  1386. # robbed of the ability to override details set in nested projects.
  1387. return()
  1388. endif()
  1389. # No details provided, so assume they were saved from an earlier call
  1390. # to FetchContent_Declare(). Do a check that we haven't already
  1391. # populated this content before in case the caller forgot to check.
  1392. FetchContent_GetProperties(${contentName})
  1393. if(${contentNameLower}_POPULATED)
  1394. if("${${contentNameLower}_SOURCE_DIR}" STREQUAL "")
  1395. message(FATAL_ERROR
  1396. "Content ${contentName} already populated by find_package() or a "
  1397. "dependency provider"
  1398. )
  1399. else()
  1400. message(FATAL_ERROR
  1401. "Content ${contentName} already populated in ${${contentNameLower}_SOURCE_DIR}"
  1402. )
  1403. endif()
  1404. endif()
  1405. __FetchContent_getSavedDetails(${contentName} contentDetails)
  1406. if("${contentDetails}" STREQUAL "")
  1407. message(FATAL_ERROR "No details have been set for content: ${contentName}")
  1408. endif()
  1409. string(TOUPPER ${contentName} contentNameUpper)
  1410. set(FETCHCONTENT_SOURCE_DIR_${contentNameUpper}
  1411. "${FETCHCONTENT_SOURCE_DIR_${contentNameUpper}}"
  1412. CACHE PATH "When not empty, overrides where to find pre-populated content for ${contentName}")
  1413. if(FETCHCONTENT_SOURCE_DIR_${contentNameUpper})
  1414. # The source directory has been explicitly provided in the cache,
  1415. # so no population is required. The build directory may still be specified
  1416. # by the declared details though.
  1417. if(NOT IS_ABSOLUTE "${FETCHCONTENT_SOURCE_DIR_${contentNameUpper}}")
  1418. # Don't check this directory because we don't know what location it is
  1419. # expected to be relative to. We can't make this a hard error for backward
  1420. # compatibility reasons.
  1421. message(WARNING "Relative source directory specified. This is not safe, "
  1422. "as it depends on the calling directory scope.\n"
  1423. " FETCHCONTENT_SOURCE_DIR_${contentNameUpper} --> ${FETCHCONTENT_SOURCE_DIR_${contentNameUpper}}")
  1424. elseif(NOT EXISTS "${FETCHCONTENT_SOURCE_DIR_${contentNameUpper}}")
  1425. message(FATAL_ERROR "Manually specified source directory is missing:\n"
  1426. " FETCHCONTENT_SOURCE_DIR_${contentNameUpper} --> ${FETCHCONTENT_SOURCE_DIR_${contentNameUpper}}")
  1427. endif()
  1428. set(${contentNameLower}_SOURCE_DIR "${FETCHCONTENT_SOURCE_DIR_${contentNameUpper}}")
  1429. cmake_parse_arguments(savedDetails "" "BINARY_DIR" "" ${contentDetails})
  1430. if(savedDetails_BINARY_DIR)
  1431. set(${contentNameLower}_BINARY_DIR ${savedDetails_BINARY_DIR})
  1432. else()
  1433. set(${contentNameLower}_BINARY_DIR "${FETCHCONTENT_BASE_DIR}/${contentNameLower}-build")
  1434. endif()
  1435. elseif(FETCHCONTENT_FULLY_DISCONNECTED)
  1436. # Bypass population and assume source is already there from a previous run.
  1437. # Declared details may override the default source or build directories.
  1438. cmake_parse_arguments(savedDetails "" "SOURCE_DIR;BINARY_DIR" "" ${contentDetails})
  1439. if(savedDetails_SOURCE_DIR)
  1440. set(${contentNameLower}_SOURCE_DIR ${savedDetails_SOURCE_DIR})
  1441. else()
  1442. set(${contentNameLower}_SOURCE_DIR "${FETCHCONTENT_BASE_DIR}/${contentNameLower}-src")
  1443. endif()
  1444. if(savedDetails_BINARY_DIR)
  1445. set(${contentNameLower}_BINARY_DIR ${savedDetails_BINARY_DIR})
  1446. else()
  1447. set(${contentNameLower}_BINARY_DIR "${FETCHCONTENT_BASE_DIR}/${contentNameLower}-build")
  1448. endif()
  1449. else()
  1450. # Support both a global "disconnect all updates" and a per-content
  1451. # update test (either one being set disables updates for this content).
  1452. option(FETCHCONTENT_UPDATES_DISCONNECTED_${contentNameUpper}
  1453. "Enables UPDATE_DISCONNECTED behavior just for population of ${contentName}")
  1454. if(FETCHCONTENT_UPDATES_DISCONNECTED OR
  1455. FETCHCONTENT_UPDATES_DISCONNECTED_${contentNameUpper})
  1456. set(disconnectUpdates True)
  1457. else()
  1458. set(disconnectUpdates False)
  1459. endif()
  1460. if(FETCHCONTENT_QUIET)
  1461. set(quietFlag QUIET)
  1462. else()
  1463. unset(quietFlag)
  1464. endif()
  1465. set(__detailsQuoted)
  1466. foreach(__item IN LISTS contentDetails)
  1467. if(NOT __item STREQUAL "OVERRIDE_FIND_PACKAGE")
  1468. string(APPEND __detailsQuoted " [==[${__item}]==]")
  1469. endif()
  1470. endforeach()
  1471. cmake_language(EVAL CODE "
  1472. __FetchContent_directPopulate(
  1473. ${contentNameLower}
  1474. ${quietFlag}
  1475. UPDATE_DISCONNECTED ${disconnectUpdates}
  1476. SUBBUILD_DIR \"${FETCHCONTENT_BASE_DIR}/${contentNameLower}-subbuild\"
  1477. SOURCE_DIR \"${FETCHCONTENT_BASE_DIR}/${contentNameLower}-src\"
  1478. BINARY_DIR \"${FETCHCONTENT_BASE_DIR}/${contentNameLower}-build\"
  1479. # Put the saved details last so they can override any of the
  1480. # the options we set above (this can include SOURCE_DIR or
  1481. # BUILD_DIR)
  1482. ${__detailsQuoted}
  1483. )"
  1484. )
  1485. endif()
  1486. FetchContent_SetPopulated(
  1487. ${contentName}
  1488. SOURCE_DIR "${${contentNameLower}_SOURCE_DIR}"
  1489. BINARY_DIR "${${contentNameLower}_BINARY_DIR}"
  1490. )
  1491. # Pass variables back to the caller. The variables passed back here
  1492. # must match what FetchContent_GetProperties() sets when it is called
  1493. # with just the content name.
  1494. set(${contentNameLower}_SOURCE_DIR "${${contentNameLower}_SOURCE_DIR}" PARENT_SCOPE)
  1495. set(${contentNameLower}_BINARY_DIR "${${contentNameLower}_BINARY_DIR}" PARENT_SCOPE)
  1496. set(${contentNameLower}_POPULATED True PARENT_SCOPE)
  1497. endfunction()
  1498. function(__FetchContent_setupFindPackageRedirection contentName)
  1499. __FetchContent_getSavedDetails(${contentName} contentDetails)
  1500. string(TOLOWER ${contentName} contentNameLower)
  1501. get_property(wantFindPackage GLOBAL PROPERTY
  1502. _FetchContent_${contentNameLower}_find_package_args
  1503. DEFINED
  1504. )
  1505. # Avoid using if(... IN_LIST ...) so we don't have to alter policy settings
  1506. list(FIND contentDetails OVERRIDE_FIND_PACKAGE indexResult)
  1507. if(NOT wantFindPackage AND indexResult EQUAL -1)
  1508. # No find_package() redirection allowed
  1509. return()
  1510. endif()
  1511. # We write out dep-config.cmake and dep-config-version.cmake file name
  1512. # forms here because they are forced to lowercase. FetchContent
  1513. # dependency names are case-insensitive, but find_package() config files
  1514. # are only case-insensitive for the -config and -config-version forms,
  1515. # not the Config and ConfigVersion forms.
  1516. set(inFileDir ${CMAKE_CURRENT_FUNCTION_LIST_DIR}/FetchContent)
  1517. set(configFilePrefix1 "${CMAKE_FIND_PACKAGE_REDIRECTS_DIR}/${contentName}Config")
  1518. set(configFilePrefix2 "${CMAKE_FIND_PACKAGE_REDIRECTS_DIR}/${contentNameLower}-config")
  1519. if(NOT EXISTS "${configFilePrefix1}.cmake" AND
  1520. NOT EXISTS "${configFilePrefix2}.cmake")
  1521. configure_file(${inFileDir}/package-config.cmake.in
  1522. "${configFilePrefix2}.cmake" @ONLY
  1523. )
  1524. endif()
  1525. if(NOT EXISTS "${configFilePrefix1}Version.cmake" AND
  1526. NOT EXISTS "${configFilePrefix2}-version.cmake")
  1527. configure_file(${inFileDir}/package-config-version.cmake.in
  1528. "${configFilePrefix2}-version.cmake" @ONLY
  1529. )
  1530. endif()
  1531. # Now that we've created the redirected package config files, prevent
  1532. # find_package() from delegating to FetchContent and let it find these
  1533. # config files through its normal processing.
  1534. set(propertyName "${prefix}_override_find_package")
  1535. set(GLOBAL PROPERTY ${propertyName} FALSE)
  1536. set(${contentName}_DIR "${CMAKE_FIND_PACKAGE_REDIRECTS_DIR}"
  1537. CACHE INTERNAL "Redirected by FetchContent"
  1538. )
  1539. endfunction()
  1540. # Arguments are assumed to be the names of dependencies that have been
  1541. # declared previously and should be populated. It is not an error if
  1542. # any of them have already been populated (they will just be skipped in
  1543. # that case). The command is implemented as a macro so that the variables
  1544. # defined by the FetchContent_GetProperties() and FetchContent_Populate()
  1545. # calls will be available to the caller.
  1546. macro(FetchContent_MakeAvailable)
  1547. # We must append an item, even if the variable is unset, so prefix its value.
  1548. # We will strip that prefix when we pop the value at the end of the macro.
  1549. list(APPEND __cmake_fcCurrentVarsStack
  1550. "__fcprefix__${CMAKE_VERIFY_INTERFACE_HEADER_SETS}"
  1551. )
  1552. set(CMAKE_VERIFY_INTERFACE_HEADER_SETS FALSE)
  1553. get_property(__cmake_providerCommand GLOBAL PROPERTY
  1554. __FETCHCONTENT_MAKEAVAILABLE_SERIAL_PROVIDER
  1555. )
  1556. foreach(__cmake_contentName IN ITEMS ${ARGV})
  1557. string(TOLOWER ${__cmake_contentName} __cmake_contentNameLower)
  1558. # If user specified FETCHCONTENT_SOURCE_DIR_... for this dependency, that
  1559. # overrides everything else and we shouldn't try to use find_package() or
  1560. # a dependency provider.
  1561. string(TOUPPER ${__cmake_contentName} __cmake_contentNameUpper)
  1562. if("${FETCHCONTENT_SOURCE_DIR_${__cmake_contentNameUpper}}" STREQUAL "")
  1563. # Dependency provider gets first opportunity, but prevent infinite
  1564. # recursion if we are called again for the same thing
  1565. if(NOT "${__cmake_providerCommand}" STREQUAL "" AND
  1566. NOT DEFINED __cmake_fcProvider_${__cmake_contentNameLower})
  1567. message(VERBOSE
  1568. "Trying FETCHCONTENT_MAKEAVAILABLE_SERIAL dependency provider for "
  1569. "${__cmake_contentName}"
  1570. )
  1571. # It's still valid if there are no saved details. The project may have
  1572. # been written to assume a dependency provider is always set and will
  1573. # provide dependencies without having any declared details for them.
  1574. __FetchContent_getSavedDetails(${__cmake_contentName} __cmake_contentDetails)
  1575. set(__cmake_providerArgs
  1576. "FETCHCONTENT_MAKEAVAILABLE_SERIAL"
  1577. "${__cmake_contentName}"
  1578. )
  1579. # Empty arguments must be preserved because of things like
  1580. # GIT_SUBMODULES (see CMP0097)
  1581. foreach(__cmake_item IN LISTS __cmake_contentDetails)
  1582. string(APPEND __cmake_providerArgs " [==[${__cmake_item}]==]")
  1583. endforeach()
  1584. # This property might be defined but empty. As long as it is defined,
  1585. # find_package() can be called.
  1586. get_property(__cmake_addfpargs GLOBAL PROPERTY
  1587. _FetchContent_${contentNameLower}_find_package_args
  1588. DEFINED
  1589. )
  1590. if(__cmake_addfpargs)
  1591. get_property(__cmake_fpargs GLOBAL PROPERTY
  1592. _FetchContent_${contentNameLower}_find_package_args
  1593. )
  1594. string(APPEND __cmake_providerArgs " FIND_PACKAGE_ARGS")
  1595. foreach(__cmake_item IN LISTS __cmake_fpargs)
  1596. string(APPEND __cmake_providerArgs " [==[${__cmake_item}]==]")
  1597. endforeach()
  1598. endif()
  1599. # Calling the provider could lead to FetchContent_MakeAvailable() being
  1600. # called for a nested dependency. That nested call may occur in the
  1601. # current variable scope. We have to save and restore the variables we
  1602. # need preserved.
  1603. list(APPEND __cmake_fcCurrentVarsStack
  1604. ${__cmake_contentName}
  1605. ${__cmake_contentNameLower}
  1606. )
  1607. set(__cmake_fcProvider_${__cmake_contentNameLower} YES)
  1608. cmake_language(EVAL CODE "${__cmake_providerCommand}(${__cmake_providerArgs})")
  1609. list(POP_BACK __cmake_fcCurrentVarsStack
  1610. __cmake_contentNameLower
  1611. __cmake_contentName
  1612. )
  1613. unset(__cmake_fcProvider_${__cmake_contentNameLower})
  1614. unset(__cmake_providerArgs)
  1615. unset(__cmake_addfpargs)
  1616. unset(__cmake_fpargs)
  1617. unset(__cmake_item)
  1618. unset(__cmake_contentDetails)
  1619. FetchContent_GetProperties(${__cmake_contentName})
  1620. if(${__cmake_contentNameLower}_POPULATED)
  1621. continue()
  1622. endif()
  1623. endif()
  1624. # Check if we've been asked to try find_package() first, even if we
  1625. # have already populated this dependency. If we previously tried to
  1626. # use find_package() for this and it succeeded, those things might
  1627. # no longer be in scope, so we have to do it again.
  1628. get_property(__cmake_haveFpArgs GLOBAL PROPERTY
  1629. _FetchContent_${__cmake_contentNameLower}_find_package_args DEFINED
  1630. )
  1631. if(__cmake_haveFpArgs)
  1632. unset(__cmake_haveFpArgs)
  1633. message(VERBOSE "Trying find_package(${__cmake_contentName} ...) before FetchContent")
  1634. get_property(__cmake_fpArgs GLOBAL PROPERTY
  1635. _FetchContent_${__cmake_contentNameLower}_find_package_args
  1636. )
  1637. # This call could lead to FetchContent_MakeAvailable() being called for
  1638. # a nested dependency and it may occur in the current variable scope.
  1639. # We have to save/restore the variables we need to preserve.
  1640. list(APPEND __cmake_fcCurrentNameStack
  1641. ${__cmake_contentName}
  1642. ${__cmake_contentNameLower}
  1643. )
  1644. find_package(${__cmake_contentName} ${__cmake_fpArgs})
  1645. list(POP_BACK __cmake_fcCurrentNameStack
  1646. __cmake_contentNameLower
  1647. __cmake_contentName
  1648. )
  1649. unset(__cmake_fpArgs)
  1650. if(${__cmake_contentName}_FOUND)
  1651. FetchContent_SetPopulated(${__cmake_contentName})
  1652. FetchContent_GetProperties(${__cmake_contentName})
  1653. continue()
  1654. endif()
  1655. endif()
  1656. else()
  1657. unset(__cmake_haveFpArgs)
  1658. endif()
  1659. FetchContent_GetProperties(${__cmake_contentName})
  1660. if(NOT ${__cmake_contentNameLower}_POPULATED)
  1661. FetchContent_Populate(${__cmake_contentName})
  1662. __FetchContent_setupFindPackageRedirection(${__cmake_contentName})
  1663. # Only try to call add_subdirectory() if the populated content
  1664. # can be treated that way. Protecting the call with the check
  1665. # allows this function to be used for projects that just want
  1666. # to ensure the content exists, such as to provide content at
  1667. # a known location. We check the saved details for an optional
  1668. # SOURCE_SUBDIR which can be used in the same way as its meaning
  1669. # for ExternalProject. It won't matter if it was passed through
  1670. # to the ExternalProject sub-build, since it would have been
  1671. # ignored there.
  1672. set(__cmake_srcdir "${${__cmake_contentNameLower}_SOURCE_DIR}")
  1673. __FetchContent_getSavedDetails(${__cmake_contentName} __cmake_contentDetails)
  1674. if("${__cmake_contentDetails}" STREQUAL "")
  1675. message(FATAL_ERROR "No details have been set for content: ${__cmake_contentName}")
  1676. endif()
  1677. cmake_parse_arguments(__cmake_arg "SYSTEM" "SOURCE_SUBDIR" "" ${__cmake_contentDetails})
  1678. if(NOT "${__cmake_arg_SOURCE_SUBDIR}" STREQUAL "")
  1679. string(APPEND __cmake_srcdir "/${__cmake_arg_SOURCE_SUBDIR}")
  1680. endif()
  1681. if(EXISTS ${__cmake_srcdir}/CMakeLists.txt)
  1682. if (__cmake_arg_SYSTEM)
  1683. add_subdirectory(${__cmake_srcdir} ${${__cmake_contentNameLower}_BINARY_DIR} SYSTEM)
  1684. else()
  1685. add_subdirectory(${__cmake_srcdir} ${${__cmake_contentNameLower}_BINARY_DIR})
  1686. endif()
  1687. endif()
  1688. unset(__cmake_srcdir)
  1689. unset(__cmake_contentDetails)
  1690. unset(__cmake_arg_SOURCE_SUBDIR)
  1691. endif()
  1692. endforeach()
  1693. # Prefix will be "__fcprefix__"
  1694. list(POP_BACK __cmake_fcCurrentVarsStack __cmake_original_verify_setting)
  1695. string(SUBSTRING "${__cmake_original_verify_setting}"
  1696. 12 -1 __cmake_original_verify_setting
  1697. )
  1698. set(CMAKE_VERIFY_INTERFACE_HEADER_SETS ${__cmake_original_verify_setting})
  1699. # clear local variables to prevent leaking into the caller's scope
  1700. unset(__cmake_contentName)
  1701. unset(__cmake_contentNameLower)
  1702. unset(__cmake_contentNameUpper)
  1703. unset(__cmake_providerCommand)
  1704. unset(__cmake_original_verify_setting)
  1705. endmacro()