ExternalProject.cmake 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484
  1. #[=======================================================================[.rst:
  2. ExternalProject
  3. ---------------
  4. Create custom targets to build projects in external trees
  5. .. command:: ExternalProject_Add
  6. The ``ExternalProject_Add`` function creates a custom target to drive
  7. download, update/patch, configure, build, install and test steps of an
  8. external project::
  9. ExternalProject_Add(<name> [<option>...])
  10. General options are:
  11. ``DEPENDS <projects>...``
  12. Targets on which the project depends
  13. ``PREFIX <dir>``
  14. Root dir for entire project
  15. ``LIST_SEPARATOR <sep>``
  16. Sep to be replaced by ; in cmd lines
  17. ``TMP_DIR <dir>``
  18. Directory to store temporary files
  19. ``STAMP_DIR <dir>``
  20. Directory to store step timestamps
  21. ``EXCLUDE_FROM_ALL 1``
  22. The "all" target does not depend on this
  23. Download step options are:
  24. ``DOWNLOAD_NAME <fname>``
  25. File name to store (if not end of URL)
  26. ``DOWNLOAD_DIR <dir>``
  27. Directory to store downloaded files
  28. ``DOWNLOAD_COMMAND <cmd>...``
  29. Command to download source tree
  30. ``DOWNLOAD_NO_PROGRESS 1``
  31. Disable download progress reports
  32. ``CVS_REPOSITORY <cvsroot>``
  33. CVSROOT of CVS repository
  34. ``CVS_MODULE <mod>``
  35. Module to checkout from CVS repo
  36. ``CVS_TAG <tag>``
  37. Tag to checkout from CVS repo
  38. ``SVN_REPOSITORY <url>``
  39. URL of Subversion repo
  40. ``SVN_REVISION -r<rev>``
  41. Revision to checkout from Subversion repo
  42. ``SVN_USERNAME <username>``
  43. Username for Subversion checkout and update
  44. ``SVN_PASSWORD <password>``
  45. Password for Subversion checkout and update
  46. ``SVN_TRUST_CERT 1``
  47. Trust the Subversion server site certificate
  48. ``GIT_REPOSITORY <url>``
  49. URL of git repo
  50. ``GIT_TAG <tag>``
  51. Git branch name, commit id or tag
  52. ``GIT_REMOTE_NAME <name>``
  53. The optional name of the remote, default to ``origin``
  54. ``GIT_SUBMODULES <module>...``
  55. Git submodules that shall be updated, all if empty
  56. ``GIT_SHALLOW 1``
  57. Tell Git to clone with ``--depth 1``. Use when ``GIT_TAG`` is not
  58. specified or when it names a branch in order to download only the
  59. tip of the branch without the rest of its history.
  60. ``HG_REPOSITORY <url>``
  61. URL of mercurial repo
  62. ``HG_TAG <tag>``
  63. Mercurial branch name, commit id or tag
  64. ``URL /.../src.tgz``
  65. Full path or URL of source
  66. ``URL_HASH ALGO=value``
  67. Hash of file at URL
  68. ``URL_MD5 md5``
  69. Equivalent to URL_HASH MD5=md5
  70. ``TLS_VERIFY <bool>``
  71. Should certificate for https be checked
  72. ``TLS_CAINFO <file>``
  73. Path to a certificate authority file
  74. ``TIMEOUT <seconds>``
  75. Time allowed for file download operations
  76. ``DOWNLOAD_NO_EXTRACT 1``
  77. Just download the file and do not extract it; the full path to the
  78. downloaded file is available as ``<DOWNLOADED_FILE>``.
  79. Update/Patch step options are:
  80. ``UPDATE_COMMAND <cmd>...``
  81. Source work-tree update command
  82. ``UPDATE_DISCONNECTED 1``
  83. Never update automatically from the remote repository
  84. ``PATCH_COMMAND <cmd>...``
  85. Command to patch downloaded source
  86. Configure step options are:
  87. ``SOURCE_DIR <dir>``
  88. Source dir to be used for build
  89. ``CONFIGURE_COMMAND <cmd>...``
  90. Build tree configuration command
  91. ``CMAKE_COMMAND /.../cmake``
  92. Specify alternative cmake executable
  93. ``CMAKE_GENERATOR <gen>``
  94. Specify generator for native build
  95. ``CMAKE_GENERATOR_PLATFORM <platform>``
  96. Generator-specific platform name
  97. ``CMAKE_GENERATOR_TOOLSET <toolset>``
  98. Generator-specific toolset name
  99. ``CMAKE_ARGS <arg>...``
  100. Arguments to CMake command line.
  101. These arguments are passed to CMake command line, and can contain
  102. arguments other than cache values, see also
  103. :manual:`CMake Options <cmake(1)>`. Arguments in the form
  104. ``-Dvar:string=on`` are always passed to the command line, and
  105. therefore cannot be changed by the user.
  106. Arguments may use
  107. :manual:`generator expressions <cmake-generator-expressions(7)>`.
  108. ``CMAKE_CACHE_ARGS <arg>...``
  109. Initial cache arguments, of the form ``-Dvar:string=on``.
  110. These arguments are written in a pre-load a script that populates
  111. CMake cache, see also :manual:`cmake -C <cmake(1)>`. This allows one to
  112. overcome command line length limits.
  113. These arguments are :command:`set` using the ``FORCE`` argument,
  114. and therefore cannot be changed by the user.
  115. Arguments may use
  116. :manual:`generator expressions <cmake-generator-expressions(7)>`.
  117. ``CMAKE_CACHE_DEFAULT_ARGS <arg>...``
  118. Initial default cache arguments, of the form ``-Dvar:string=on``.
  119. These arguments are written in a pre-load a script that populates
  120. CMake cache, see also :manual:`cmake -C <cmake(1)>`. This allows one to
  121. overcome command line length limits.
  122. These arguments can be used as default value that will be set if no
  123. previous value is found in the cache, and that the user can change
  124. later.
  125. Arguments may use
  126. :manual:`generator expressions <cmake-generator-expressions(7)>`.
  127. Build step options are:
  128. ``BINARY_DIR <dir>``
  129. Specify build dir location
  130. ``BUILD_COMMAND <cmd>...``
  131. Command to drive the native build
  132. ``BUILD_IN_SOURCE 1``
  133. Use source dir for build dir
  134. ``BUILD_ALWAYS 1``
  135. No stamp file, build step always runs
  136. ``BUILD_BYPRODUCTS <file>...``
  137. Files that will be generated by the build command but may or may
  138. not have their modification time updated by subsequent builds.
  139. Install step options are:
  140. ``INSTALL_DIR <dir>``
  141. Installation prefix
  142. ``INSTALL_COMMAND <cmd>...``
  143. Command to drive install after build
  144. Test step options are:
  145. ``TEST_BEFORE_INSTALL 1``
  146. Add test step executed before install step
  147. ``TEST_AFTER_INSTALL 1``
  148. Add test step executed after install step
  149. ``TEST_EXCLUDE_FROM_MAIN 1``
  150. Main target does not depend on the test step
  151. ``TEST_COMMAND <cmd>...``
  152. Command to drive test
  153. Output logging options are:
  154. ``LOG_DOWNLOAD 1``
  155. Wrap download in script to log output
  156. ``LOG_UPDATE 1``
  157. Wrap update in script to log output
  158. ``LOG_CONFIGURE 1``
  159. Wrap configure in script to log output
  160. ``LOG_BUILD 1``
  161. Wrap build in script to log output
  162. ``LOG_TEST 1``
  163. Wrap test in script to log output
  164. ``LOG_INSTALL 1``
  165. Wrap install in script to log output
  166. Steps can be given direct access to the terminal if possible. With
  167. the :generator:`Ninja` generator, this places the steps in the
  168. ``console`` :prop_gbl:`pool <JOB_POOLS>`. Options are:
  169. ``USES_TERMINAL_DOWNLOAD 1``
  170. Give download terminal access.
  171. ``USES_TERMINAL_UPDATE 1``
  172. Give update terminal access.
  173. ``USES_TERMINAL_CONFIGURE 1``
  174. Give configure terminal access.
  175. ``USES_TERMINAL_BUILD 1``
  176. Give build terminal access.
  177. ``USES_TERMINAL_TEST 1``
  178. Give test terminal access.
  179. ``USES_TERMINAL_INSTALL 1``
  180. Give install terminal access.
  181. Other options are:
  182. ``STEP_TARGETS <step-target>...``
  183. Generate custom targets for these steps
  184. ``INDEPENDENT_STEP_TARGETS <step-target>...``
  185. Generate custom targets for these steps that do not depend on other
  186. external projects even if a dependency is set
  187. The ``*_DIR`` options specify directories for the project, with default
  188. directories computed as follows. If the ``PREFIX`` option is given to
  189. ``ExternalProject_Add()`` or the ``EP_PREFIX`` directory property is set,
  190. then an external project is built and installed under the specified prefix::
  191. TMP_DIR = <prefix>/tmp
  192. STAMP_DIR = <prefix>/src/<name>-stamp
  193. DOWNLOAD_DIR = <prefix>/src
  194. SOURCE_DIR = <prefix>/src/<name>
  195. BINARY_DIR = <prefix>/src/<name>-build
  196. INSTALL_DIR = <prefix>
  197. Otherwise, if the ``EP_BASE`` directory property is set then components
  198. of an external project are stored under the specified base::
  199. TMP_DIR = <base>/tmp/<name>
  200. STAMP_DIR = <base>/Stamp/<name>
  201. DOWNLOAD_DIR = <base>/Download/<name>
  202. SOURCE_DIR = <base>/Source/<name>
  203. BINARY_DIR = <base>/Build/<name>
  204. INSTALL_DIR = <base>/Install/<name>
  205. If no ``PREFIX``, ``EP_PREFIX``, or ``EP_BASE`` is specified then the
  206. default is to set ``PREFIX`` to ``<name>-prefix``. Relative paths are
  207. interpreted with respect to the build directory corresponding to the
  208. source directory in which ``ExternalProject_Add`` is invoked.
  209. If ``SOURCE_DIR`` is explicitly set to an existing directory the project
  210. will be built from it. Otherwise a download step must be specified
  211. using one of the ``DOWNLOAD_COMMAND``, ``CVS_*``, ``SVN_*``, or ``URL``
  212. options. The ``URL`` option may refer locally to a directory or source
  213. tarball, or refer to a remote tarball (e.g. ``http://.../src.tgz``).
  214. If ``UPDATE_DISCONNECTED`` is set, the update step is not executed
  215. automatically when building the main target. The update step can still
  216. be added as a step target and called manually. This is useful if you
  217. want to allow one to build the project when you are disconnected from the
  218. network (you might still need the network for the download step).
  219. This is disabled by default.
  220. The directory property ``EP_UPDATE_DISCONNECTED`` can be used to change
  221. the default value for all the external projects in the current
  222. directory and its subdirectories.
  223. .. command:: ExternalProject_Add_Step
  224. The ``ExternalProject_Add_Step`` function adds a custom step to an
  225. external project::
  226. ExternalProject_Add_Step(<name> <step> [<option>...])
  227. Options are:
  228. ``COMMAND <cmd>...``
  229. Command line invoked by this step
  230. ``COMMENT "<text>..."``
  231. Text printed when step executes
  232. ``DEPENDEES <step>...``
  233. Steps on which this step depends
  234. ``DEPENDERS <step>...``
  235. Steps that depend on this step
  236. ``DEPENDS <file>...``
  237. Files on which this step depends
  238. ``BYPRODUCTS <file>...``
  239. Files that will be generated by this step but may or may not
  240. have their modification time updated by subsequent builds.
  241. ``ALWAYS 1``
  242. No stamp file, step always runs
  243. ``EXCLUDE_FROM_MAIN 1``
  244. Main target does not depend on this step
  245. ``WORKING_DIRECTORY <dir>``
  246. Working directory for command
  247. ``LOG 1``
  248. Wrap step in script to log output
  249. ``USES_TERMINAL 1``
  250. Give the step direct access to the terminal if possible.
  251. The command line, comment, working directory, and byproducts of every
  252. standard and custom step are processed to replace tokens ``<SOURCE_DIR>``,
  253. ``<BINARY_DIR>``, ``<INSTALL_DIR>``, and ``<TMP_DIR>`` with
  254. corresponding property values.
  255. Any builtin step that specifies a ``<step>_COMMAND cmd...`` or custom
  256. step that specifies a ``COMMAND cmd...`` may specify additional command
  257. lines using the form ``COMMAND cmd...``. At build time the commands
  258. will be executed in order and aborted if any one fails. For example::
  259. ... BUILD_COMMAND make COMMAND echo done ...
  260. specifies to run ``make`` and then ``echo done`` during the build step.
  261. Whether the current working directory is preserved between commands is
  262. not defined. Behavior of shell operators like ``&&`` is not defined.
  263. Arguments to ``<step>_COMMAND`` or ``COMMAND`` options may use
  264. :manual:`generator expressions <cmake-generator-expressions(7)>`.
  265. .. command:: ExternalProject_Get_Property
  266. The ``ExternalProject_Get_Property`` function retrieves external project
  267. target properties::
  268. ExternalProject_Get_Property(<name> [prop1 [prop2 [...]]])
  269. It stores property values in variables of the same name. Property
  270. names correspond to the keyword argument names of
  271. ``ExternalProject_Add``.
  272. .. command:: ExternalProject_Add_StepTargets
  273. The ``ExternalProject_Add_StepTargets`` function generates custom
  274. targets for the steps listed::
  275. ExternalProject_Add_StepTargets(<name> [NO_DEPENDS] [step1 [step2 [...]]])
  276. If ``NO_DEPENDS`` is set, the target will not depend on the
  277. dependencies of the complete project. This is usually safe to use for
  278. the download, update, and patch steps that do not require that all the
  279. dependencies are updated and built. Using ``NO_DEPENDS`` for other
  280. of the default steps might break parallel builds, so you should avoid,
  281. it. For custom steps, you should consider whether or not the custom
  282. commands requires that the dependencies are configured, built and
  283. installed.
  284. If ``STEP_TARGETS`` or ``INDEPENDENT_STEP_TARGETS`` is set then
  285. ``ExternalProject_Add_StepTargets`` is automatically called at the end
  286. of matching calls to ``ExternalProject_Add_Step``. Pass
  287. ``STEP_TARGETS`` or ``INDEPENDENT_STEP_TARGETS`` explicitly to
  288. individual ``ExternalProject_Add`` calls, or implicitly to all
  289. ``ExternalProject_Add`` calls by setting the directory properties
  290. ``EP_STEP_TARGETS`` and ``EP_INDEPENDENT_STEP_TARGETS``. The
  291. ``INDEPENDENT`` version of the argument and of the property will call
  292. ``ExternalProject_Add_StepTargets`` with the ``NO_DEPENDS`` argument.
  293. If ``STEP_TARGETS`` and ``INDEPENDENT_STEP_TARGETS`` are not set,
  294. clients may still manually call ``ExternalProject_Add_StepTargets``
  295. after calling ``ExternalProject_Add`` or ``ExternalProject_Add_Step``.
  296. This functionality is provided to make it easy to drive the steps
  297. independently of each other by specifying targets on build command
  298. lines. For example, you may be submitting to a sub-project based
  299. dashboard, where you want to drive the configure portion of the build,
  300. then submit to the dashboard, followed by the build portion, followed
  301. by tests. If you invoke a custom target that depends on a step
  302. halfway through the step dependency chain, then all the previous steps
  303. will also run to ensure everything is up to date.
  304. For example, to drive configure, build and test steps independently
  305. for each ``ExternalProject_Add`` call in your project, write the following
  306. line prior to any ``ExternalProject_Add`` calls in your ``CMakeLists.txt``
  307. file::
  308. set_property(DIRECTORY PROPERTY EP_STEP_TARGETS configure build test)
  309. .. command:: ExternalProject_Add_StepDependencies
  310. The ``ExternalProject_Add_StepDependencies`` function add some
  311. dependencies for some external project step::
  312. ExternalProject_Add_StepDependencies(<name> <step> [target1 [target2 [...]]])
  313. This function takes care to set both target and file level
  314. dependencies, and will ensure that parallel builds will not break.
  315. It should be used instead of :command:`add_dependencies()` when adding
  316. a dependency for some of the step targets generated by
  317. ``ExternalProject``.
  318. #]=======================================================================]
  319. #=============================================================================
  320. # Copyright 2008-2013 Kitware, Inc.
  321. # Copyright 2016 Ruslan Baratov
  322. #
  323. # Distributed under the OSI-approved BSD License (the "License");
  324. # see accompanying file Copyright.txt for details.
  325. #
  326. # This software is distributed WITHOUT ANY WARRANTY; without even the
  327. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  328. # See the License for more information.
  329. #=============================================================================
  330. # (To distribute this file outside of CMake, substitute the full
  331. # License text for the above reference.)
  332. # Pre-compute a regex to match documented keywords for each command.
  333. math(EXPR _ep_documentation_line_count "${CMAKE_CURRENT_LIST_LINE} - 16")
  334. file(STRINGS "${CMAKE_CURRENT_LIST_FILE}" lines
  335. LIMIT_COUNT ${_ep_documentation_line_count}
  336. REGEX "^\\.\\. command:: [A-Za-z0-9_]+|^ ``[A-Z0-9_]+ .*``$")
  337. foreach(line IN LISTS lines)
  338. if("${line}" MATCHES "^\\.\\. command:: ([A-Za-z0-9_]+)")
  339. if(_ep_func)
  340. set(_ep_keywords_${_ep_func} "${_ep_keywords_${_ep_func}})$")
  341. endif()
  342. set(_ep_func "${CMAKE_MATCH_1}")
  343. #message("function [${_ep_func}]")
  344. set(_ep_keywords_${_ep_func} "^(")
  345. set(_ep_keyword_sep)
  346. elseif("${line}" MATCHES "^ ``([A-Z0-9_]+) .*``$")
  347. set(_ep_key "${CMAKE_MATCH_1}")
  348. #message(" keyword [${_ep_key}]")
  349. set(_ep_keywords_${_ep_func}
  350. "${_ep_keywords_${_ep_func}}${_ep_keyword_sep}${_ep_key}")
  351. set(_ep_keyword_sep "|")
  352. endif()
  353. endforeach()
  354. if(_ep_func)
  355. set(_ep_keywords_${_ep_func} "${_ep_keywords_${_ep_func}})$")
  356. endif()
  357. # Save regex matching supported hash algorithm names.
  358. set(_ep_hash_algos "MD5|SHA1|SHA224|SHA256|SHA384|SHA512")
  359. set(_ep_hash_regex "^(${_ep_hash_algos})=([0-9A-Fa-f]+)$")
  360. set(_ExternalProject_SELF "${CMAKE_CURRENT_LIST_FILE}")
  361. get_filename_component(_ExternalProject_SELF_DIR "${_ExternalProject_SELF}" PATH)
  362. function(_ep_parse_arguments f name ns args)
  363. # Transfer the arguments to this function into target properties for the
  364. # new custom target we just added so that we can set up all the build steps
  365. # correctly based on target properties.
  366. #
  367. # We loop through ARGN and consider the namespace starting with an
  368. # upper-case letter followed by at least two more upper-case letters,
  369. # numbers or underscores to be keywords.
  370. set(key)
  371. foreach(arg IN LISTS args)
  372. set(is_value 1)
  373. if(arg MATCHES "^[A-Z][A-Z0-9_][A-Z0-9_]+$" AND
  374. NOT (("x${arg}x" STREQUAL "x${key}x") AND ("x${key}x" STREQUAL "xCOMMANDx")) AND
  375. NOT arg MATCHES "^(TRUE|FALSE)$")
  376. if(_ep_keywords_${f} AND arg MATCHES "${_ep_keywords_${f}}")
  377. set(is_value 0)
  378. endif()
  379. endif()
  380. if(is_value)
  381. if(key)
  382. # Value
  383. if(NOT arg STREQUAL "")
  384. set_property(TARGET ${name} APPEND PROPERTY ${ns}${key} "${arg}")
  385. else()
  386. get_property(have_key TARGET ${name} PROPERTY ${ns}${key} SET)
  387. if(have_key)
  388. get_property(value TARGET ${name} PROPERTY ${ns}${key})
  389. set_property(TARGET ${name} PROPERTY ${ns}${key} "${value};${arg}")
  390. else()
  391. set_property(TARGET ${name} PROPERTY ${ns}${key} "${arg}")
  392. endif()
  393. endif()
  394. else()
  395. # Missing Keyword
  396. message(AUTHOR_WARNING "value '${arg}' with no previous keyword in ${f}")
  397. endif()
  398. else()
  399. set(key "${arg}")
  400. endif()
  401. endforeach()
  402. endfunction()
  403. define_property(DIRECTORY PROPERTY "EP_BASE" INHERITED
  404. BRIEF_DOCS "Base directory for External Project storage."
  405. FULL_DOCS
  406. "See documentation of the ExternalProject_Add() function in the "
  407. "ExternalProject module."
  408. )
  409. define_property(DIRECTORY PROPERTY "EP_PREFIX" INHERITED
  410. BRIEF_DOCS "Top prefix for External Project storage."
  411. FULL_DOCS
  412. "See documentation of the ExternalProject_Add() function in the "
  413. "ExternalProject module."
  414. )
  415. define_property(DIRECTORY PROPERTY "EP_STEP_TARGETS" INHERITED
  416. BRIEF_DOCS
  417. "List of ExternalProject steps that automatically get corresponding targets"
  418. FULL_DOCS
  419. "These targets will be dependent on the main target dependencies"
  420. "See documentation of the ExternalProject_Add_StepTargets() function in the "
  421. "ExternalProject module."
  422. )
  423. define_property(DIRECTORY PROPERTY "EP_INDEPENDENT_STEP_TARGETS" INHERITED
  424. BRIEF_DOCS
  425. "List of ExternalProject steps that automatically get corresponding targets"
  426. FULL_DOCS
  427. "These targets will not be dependent on the main target dependencies"
  428. "See documentation of the ExternalProject_Add_StepTargets() function in the "
  429. "ExternalProject module."
  430. )
  431. define_property(DIRECTORY PROPERTY "EP_UPDATE_DISCONNECTED" INHERITED
  432. BRIEF_DOCS "Never update automatically from the remote repo."
  433. FULL_DOCS
  434. "See documentation of the ExternalProject_Add() function in the "
  435. "ExternalProject module."
  436. )
  437. function(_ep_write_gitclone_script script_filename source_dir git_EXECUTABLE git_repository git_tag git_remote_name git_submodules git_shallow src_name work_dir gitclone_infofile gitclone_stampfile tls_verify)
  438. if(NOT GIT_VERSION_STRING VERSION_LESS 1.7.10)
  439. set(git_clone_shallow_options "--depth 1 --no-single-branch")
  440. else()
  441. set(git_clone_shallow_options "--depth 1")
  442. endif()
  443. file(WRITE ${script_filename}
  444. "if(\"${git_tag}\" STREQUAL \"\")
  445. message(FATAL_ERROR \"Tag for git checkout should not be empty.\")
  446. endif()
  447. set(run 0)
  448. if(\"${gitclone_infofile}\" IS_NEWER_THAN \"${gitclone_stampfile}\")
  449. set(run 1)
  450. endif()
  451. if(NOT run)
  452. message(STATUS \"Avoiding repeated git clone, stamp file is up to date: '${gitclone_stampfile}'\")
  453. return()
  454. endif()
  455. execute_process(
  456. COMMAND \${CMAKE_COMMAND} -E remove_directory \"${source_dir}\"
  457. RESULT_VARIABLE error_code
  458. )
  459. if(error_code)
  460. message(FATAL_ERROR \"Failed to remove directory: '${source_dir}'\")
  461. endif()
  462. set(git_options)
  463. # disable cert checking if explicitly told not to do it
  464. set(tls_verify \"${tls_verify}\")
  465. if(NOT \"x${tls_verify}\" STREQUAL \"x\" AND NOT tls_verify)
  466. list(APPEND git_options
  467. -c http.sslVerify=false)
  468. endif()
  469. set(git_clone_options)
  470. set(git_shallow \"${git_shallow}\")
  471. if(git_shallow)
  472. list(APPEND git_clone_options ${git_clone_shallow_options})
  473. endif()
  474. # try the clone 3 times incase there is an odd git clone issue
  475. set(error_code 1)
  476. set(number_of_tries 0)
  477. while(error_code AND number_of_tries LESS 3)
  478. execute_process(
  479. COMMAND \"${git_EXECUTABLE}\" \${git_options} clone \${git_clone_options} --origin \"${git_remote_name}\" \"${git_repository}\" \"${src_name}\"
  480. WORKING_DIRECTORY \"${work_dir}\"
  481. RESULT_VARIABLE error_code
  482. )
  483. math(EXPR number_of_tries \"\${number_of_tries} + 1\")
  484. endwhile()
  485. if(number_of_tries GREATER 1)
  486. message(STATUS \"Had to git clone more than once:
  487. \${number_of_tries} times.\")
  488. endif()
  489. if(error_code)
  490. message(FATAL_ERROR \"Failed to clone repository: '${git_repository}'\")
  491. endif()
  492. execute_process(
  493. COMMAND \"${git_EXECUTABLE}\" \${git_options} checkout ${git_tag}
  494. WORKING_DIRECTORY \"${work_dir}/${src_name}\"
  495. RESULT_VARIABLE error_code
  496. )
  497. if(error_code)
  498. message(FATAL_ERROR \"Failed to checkout tag: '${git_tag}'\")
  499. endif()
  500. execute_process(
  501. COMMAND \"${git_EXECUTABLE}\" \${git_options} submodule init ${git_submodules}
  502. WORKING_DIRECTORY \"${work_dir}/${src_name}\"
  503. RESULT_VARIABLE error_code
  504. )
  505. if(error_code)
  506. message(FATAL_ERROR \"Failed to init submodules in: '${work_dir}/${src_name}'\")
  507. endif()
  508. execute_process(
  509. COMMAND \"${git_EXECUTABLE}\" \${git_options} submodule update --recursive --init ${git_submodules}
  510. WORKING_DIRECTORY \"${work_dir}/${src_name}\"
  511. RESULT_VARIABLE error_code
  512. )
  513. if(error_code)
  514. message(FATAL_ERROR \"Failed to update submodules in: '${work_dir}/${src_name}'\")
  515. endif()
  516. # Complete success, update the script-last-run stamp file:
  517. #
  518. execute_process(
  519. COMMAND \${CMAKE_COMMAND} -E copy
  520. \"${gitclone_infofile}\"
  521. \"${gitclone_stampfile}\"
  522. WORKING_DIRECTORY \"${work_dir}/${src_name}\"
  523. RESULT_VARIABLE error_code
  524. )
  525. if(error_code)
  526. message(FATAL_ERROR \"Failed to copy script-last-run stamp file: '${gitclone_stampfile}'\")
  527. endif()
  528. "
  529. )
  530. endfunction()
  531. function(_ep_write_hgclone_script script_filename source_dir hg_EXECUTABLE hg_repository hg_tag src_name work_dir hgclone_infofile hgclone_stampfile)
  532. file(WRITE ${script_filename}
  533. "if(\"${hg_tag}\" STREQUAL \"\")
  534. message(FATAL_ERROR \"Tag for hg checkout should not be empty.\")
  535. endif()
  536. set(run 0)
  537. if(\"${hgclone_infofile}\" IS_NEWER_THAN \"${hgclone_stampfile}\")
  538. set(run 1)
  539. endif()
  540. if(NOT run)
  541. message(STATUS \"Avoiding repeated hg clone, stamp file is up to date: '${hgclone_stampfile}'\")
  542. return()
  543. endif()
  544. execute_process(
  545. COMMAND \${CMAKE_COMMAND} -E remove_directory \"${source_dir}\"
  546. RESULT_VARIABLE error_code
  547. )
  548. if(error_code)
  549. message(FATAL_ERROR \"Failed to remove directory: '${source_dir}'\")
  550. endif()
  551. execute_process(
  552. COMMAND \"${hg_EXECUTABLE}\" clone -U \"${hg_repository}\" \"${src_name}\"
  553. WORKING_DIRECTORY \"${work_dir}\"
  554. RESULT_VARIABLE error_code
  555. )
  556. if(error_code)
  557. message(FATAL_ERROR \"Failed to clone repository: '${hg_repository}'\")
  558. endif()
  559. execute_process(
  560. COMMAND \"${hg_EXECUTABLE}\" update ${hg_tag}
  561. WORKING_DIRECTORY \"${work_dir}/${src_name}\"
  562. RESULT_VARIABLE error_code
  563. )
  564. if(error_code)
  565. message(FATAL_ERROR \"Failed to checkout tag: '${hg_tag}'\")
  566. endif()
  567. # Complete success, update the script-last-run stamp file:
  568. #
  569. execute_process(
  570. COMMAND \${CMAKE_COMMAND} -E copy
  571. \"${hgclone_infofile}\"
  572. \"${hgclone_stampfile}\"
  573. WORKING_DIRECTORY \"${work_dir}/${src_name}\"
  574. RESULT_VARIABLE error_code
  575. )
  576. if(error_code)
  577. message(FATAL_ERROR \"Failed to copy script-last-run stamp file: '${hgclone_stampfile}'\")
  578. endif()
  579. "
  580. )
  581. endfunction()
  582. function(_ep_write_gitupdate_script script_filename git_EXECUTABLE git_tag git_remote_name git_submodules git_repository work_dir)
  583. if(NOT GIT_VERSION_STRING VERSION_LESS 1.7.6)
  584. set(git_stash_save_options --all --quiet)
  585. else()
  586. set(git_stash_save_options --quiet)
  587. endif()
  588. file(WRITE ${script_filename}
  589. "if(\"${git_tag}\" STREQUAL \"\")
  590. message(FATAL_ERROR \"Tag for git checkout should not be empty.\")
  591. endif()
  592. execute_process(
  593. COMMAND \"${git_EXECUTABLE}\" rev-list --max-count=1 HEAD
  594. WORKING_DIRECTORY \"${work_dir}\"
  595. RESULT_VARIABLE error_code
  596. OUTPUT_VARIABLE head_sha
  597. OUTPUT_STRIP_TRAILING_WHITESPACE
  598. )
  599. if(error_code)
  600. message(FATAL_ERROR \"Failed to get the hash for HEAD\")
  601. endif()
  602. execute_process(
  603. COMMAND \"${git_EXECUTABLE}\" show-ref ${git_tag}
  604. WORKING_DIRECTORY \"${work_dir}\"
  605. OUTPUT_VARIABLE show_ref_output
  606. )
  607. # If a remote ref is asked for, which can possibly move around,
  608. # we must always do a fetch and checkout.
  609. if(\"\${show_ref_output}\" MATCHES \"remotes\")
  610. set(is_remote_ref 1)
  611. else()
  612. set(is_remote_ref 0)
  613. endif()
  614. # Tag is in the form <remote>/<tag> (i.e. origin/master) we must strip
  615. # the remote from the tag.
  616. if(\"\${show_ref_output}\" MATCHES \"refs/remotes/${git_tag}\")
  617. string(REGEX MATCH \"^([^/]+)/(.+)$\" _unused \"${git_tag}\")
  618. set(git_remote \"\${CMAKE_MATCH_1}\")
  619. set(git_tag \"\${CMAKE_MATCH_2}\")
  620. else()
  621. set(git_remote \"${git_remote_name}\")
  622. set(git_tag \"${git_tag}\")
  623. endif()
  624. # This will fail if the tag does not exist (it probably has not been fetched
  625. # yet).
  626. execute_process(
  627. COMMAND \"${git_EXECUTABLE}\" rev-list --max-count=1 ${git_tag}
  628. WORKING_DIRECTORY \"${work_dir}\"
  629. RESULT_VARIABLE error_code
  630. OUTPUT_VARIABLE tag_sha
  631. OUTPUT_STRIP_TRAILING_WHITESPACE
  632. )
  633. # Is the hash checkout out that we want?
  634. if(error_code OR is_remote_ref OR NOT (\"\${tag_sha}\" STREQUAL \"\${head_sha}\"))
  635. execute_process(
  636. COMMAND \"${git_EXECUTABLE}\" fetch
  637. WORKING_DIRECTORY \"${work_dir}\"
  638. RESULT_VARIABLE error_code
  639. )
  640. if(error_code)
  641. message(FATAL_ERROR \"Failed to fetch repository '${git_repository}'\")
  642. endif()
  643. if(is_remote_ref)
  644. # Check if stash is needed
  645. execute_process(
  646. COMMAND \"${git_EXECUTABLE}\" status --porcelain
  647. WORKING_DIRECTORY \"${work_dir}\"
  648. RESULT_VARIABLE error_code
  649. OUTPUT_VARIABLE repo_status
  650. )
  651. if(error_code)
  652. message(FATAL_ERROR \"Failed to get the status\")
  653. endif()
  654. string(LENGTH \"\${repo_status}\" need_stash)
  655. # If not in clean state, stash changes in order to be able to be able to
  656. # perform git pull --rebase
  657. if(need_stash)
  658. execute_process(
  659. COMMAND \"${git_EXECUTABLE}\" stash save ${git_stash_save_options}
  660. WORKING_DIRECTORY \"${work_dir}\"
  661. RESULT_VARIABLE error_code
  662. )
  663. if(error_code)
  664. message(FATAL_ERROR \"Failed to stash changes\")
  665. endif()
  666. endif()
  667. # Pull changes from the remote branch
  668. execute_process(
  669. COMMAND \"${git_EXECUTABLE}\" rebase \${git_remote}/\${git_tag}
  670. WORKING_DIRECTORY \"${work_dir}\"
  671. RESULT_VARIABLE error_code
  672. )
  673. if(error_code)
  674. # Rebase failed: Restore previous state.
  675. execute_process(
  676. COMMAND \"${git_EXECUTABLE}\" rebase --abort
  677. WORKING_DIRECTORY \"${work_dir}\"
  678. )
  679. if(need_stash)
  680. execute_process(
  681. COMMAND \"${git_EXECUTABLE}\" stash pop --index --quiet
  682. WORKING_DIRECTORY \"${work_dir}\"
  683. )
  684. endif()
  685. message(FATAL_ERROR \"\\nFailed to rebase in: '${work_dir}/${src_name}'.\\nYou will have to resolve the conflicts manually\")
  686. endif()
  687. if(need_stash)
  688. execute_process(
  689. COMMAND \"${git_EXECUTABLE}\" stash pop --index --quiet
  690. WORKING_DIRECTORY \"${work_dir}\"
  691. RESULT_VARIABLE error_code
  692. )
  693. if(error_code)
  694. # Stash pop --index failed: Try again dropping the index
  695. execute_process(
  696. COMMAND \"${git_EXECUTABLE}\" reset --hard --quiet
  697. WORKING_DIRECTORY \"${work_dir}\"
  698. RESULT_VARIABLE error_code
  699. )
  700. execute_process(
  701. COMMAND \"${git_EXECUTABLE}\" stash pop --quiet
  702. WORKING_DIRECTORY \"${work_dir}\"
  703. RESULT_VARIABLE error_code
  704. )
  705. if(error_code)
  706. # Stash pop failed: Restore previous state.
  707. execute_process(
  708. COMMAND \"${git_EXECUTABLE}\" reset --hard --quiet \${head_sha}
  709. WORKING_DIRECTORY \"${work_dir}\"
  710. )
  711. execute_process(
  712. COMMAND \"${git_EXECUTABLE}\" stash pop --index --quiet
  713. WORKING_DIRECTORY \"${work_dir}\"
  714. )
  715. message(FATAL_ERROR \"\\nFailed to unstash changes in: '${work_dir}/${src_name}'.\\nYou will have to resolve the conflicts manually\")
  716. endif()
  717. endif()
  718. endif()
  719. else()
  720. execute_process(
  721. COMMAND \"${git_EXECUTABLE}\" checkout ${git_tag}
  722. WORKING_DIRECTORY \"${work_dir}\"
  723. RESULT_VARIABLE error_code
  724. )
  725. if(error_code)
  726. message(FATAL_ERROR \"Failed to checkout tag: '${git_tag}'\")
  727. endif()
  728. endif()
  729. execute_process(
  730. COMMAND \"${git_EXECUTABLE}\" submodule update --recursive --init ${git_submodules}
  731. WORKING_DIRECTORY \"${work_dir}/${src_name}\"
  732. RESULT_VARIABLE error_code
  733. )
  734. if(error_code)
  735. message(FATAL_ERROR \"Failed to update submodules in: '${work_dir}/${src_name}'\")
  736. endif()
  737. endif()
  738. "
  739. )
  740. endfunction(_ep_write_gitupdate_script)
  741. function(_ep_write_downloadfile_script script_filename REMOTE LOCAL timeout no_progress hash tls_verify tls_cainfo)
  742. if(timeout)
  743. set(TIMEOUT_ARGS TIMEOUT ${timeout})
  744. set(TIMEOUT_MSG "${timeout} seconds")
  745. else()
  746. set(TIMEOUT_ARGS "# no TIMEOUT")
  747. set(TIMEOUT_MSG "none")
  748. endif()
  749. if(no_progress)
  750. set(SHOW_PROGRESS "")
  751. else()
  752. set(SHOW_PROGRESS "SHOW_PROGRESS")
  753. endif()
  754. if("${hash}" MATCHES "${_ep_hash_regex}")
  755. set(ALGO "${CMAKE_MATCH_1}")
  756. set(EXPECT_VALUE "${CMAKE_MATCH_2}")
  757. else()
  758. set(ALGO "")
  759. set(EXPECT_VALUE "")
  760. endif()
  761. set(TLS_VERIFY_CODE "")
  762. set(TLS_CAINFO_CODE "")
  763. # check for curl globals in the project
  764. if(DEFINED CMAKE_TLS_VERIFY)
  765. set(TLS_VERIFY_CODE "set(CMAKE_TLS_VERIFY ${CMAKE_TLS_VERIFY})")
  766. endif()
  767. if(DEFINED CMAKE_TLS_CAINFO)
  768. set(TLS_CAINFO_CODE "set(CMAKE_TLS_CAINFO \"${CMAKE_TLS_CAINFO}\")")
  769. endif()
  770. # now check for curl locals so that the local values
  771. # will override the globals
  772. # check for tls_verify argument
  773. string(LENGTH "${tls_verify}" tls_verify_len)
  774. if(tls_verify_len GREATER 0)
  775. set(TLS_VERIFY_CODE "set(CMAKE_TLS_VERIFY ${tls_verify})")
  776. endif()
  777. # check for tls_cainfo argument
  778. string(LENGTH "${tls_cainfo}" tls_cainfo_len)
  779. if(tls_cainfo_len GREATER 0)
  780. set(TLS_CAINFO_CODE "set(CMAKE_TLS_CAINFO \"${tls_cainfo}\")")
  781. endif()
  782. # Used variables:
  783. # * TLS_VERIFY_CODE
  784. # * TLS_CAINFO_CODE
  785. # * ALGO
  786. # * EXPECT_VALUE
  787. # * REMOTE
  788. # * LOCAL
  789. # * SHOW_PROGRESS
  790. # * TIMEOUT_ARGS
  791. # * TIMEOUT_MSG
  792. configure_file(
  793. "${_ExternalProject_SELF_DIR}/ExternalProject-download.cmake.in"
  794. "${script_filename}"
  795. @ONLY
  796. )
  797. endfunction()
  798. function(_ep_write_verifyfile_script script_filename LOCAL hash)
  799. if("${hash}" MATCHES "${_ep_hash_regex}")
  800. set(ALGO "${CMAKE_MATCH_1}")
  801. string(TOLOWER "${CMAKE_MATCH_2}" EXPECT_VALUE)
  802. else()
  803. set(ALGO "")
  804. set(EXPECT_VALUE "")
  805. endif()
  806. # Used variables:
  807. # * ALGO
  808. # * EXPECT_VALUE
  809. # * LOCAL
  810. configure_file(
  811. "${_ExternalProject_SELF_DIR}/ExternalProject-verify.cmake.in"
  812. "${script_filename}"
  813. @ONLY
  814. )
  815. endfunction()
  816. function(_ep_write_extractfile_script script_filename name filename directory)
  817. set(args "")
  818. if(filename MATCHES "(\\.|=)(7z|tar\\.bz2|tar\\.gz|tar\\.xz|tbz2|tgz|txz|zip)$")
  819. set(args xfz)
  820. endif()
  821. if(filename MATCHES "(\\.|=)tar$")
  822. set(args xf)
  823. endif()
  824. if(args STREQUAL "")
  825. message(SEND_ERROR "error: do not know how to extract '${filename}' -- known types are .7z, .tar, .tar.bz2, .tar.gz, .tar.xz, .tbz2, .tgz, .txz and .zip")
  826. return()
  827. endif()
  828. file(WRITE ${script_filename}
  829. "# Make file names absolute:
  830. #
  831. get_filename_component(filename \"${filename}\" ABSOLUTE)
  832. get_filename_component(directory \"${directory}\" ABSOLUTE)
  833. message(STATUS \"extracting...
  834. src='\${filename}'
  835. dst='\${directory}'\")
  836. if(NOT EXISTS \"\${filename}\")
  837. message(FATAL_ERROR \"error: file to extract does not exist: '\${filename}'\")
  838. endif()
  839. # Prepare a space for extracting:
  840. #
  841. set(i 1234)
  842. while(EXISTS \"\${directory}/../ex-${name}\${i}\")
  843. math(EXPR i \"\${i} + 1\")
  844. endwhile()
  845. set(ut_dir \"\${directory}/../ex-${name}\${i}\")
  846. file(MAKE_DIRECTORY \"\${ut_dir}\")
  847. # Extract it:
  848. #
  849. message(STATUS \"extracting... [tar ${args}]\")
  850. execute_process(COMMAND \${CMAKE_COMMAND} -E tar ${args} \${filename}
  851. WORKING_DIRECTORY \${ut_dir}
  852. RESULT_VARIABLE rv)
  853. if(NOT rv EQUAL 0)
  854. message(STATUS \"extracting... [error clean up]\")
  855. file(REMOVE_RECURSE \"\${ut_dir}\")
  856. message(FATAL_ERROR \"error: extract of '\${filename}' failed\")
  857. endif()
  858. # Analyze what came out of the tar file:
  859. #
  860. message(STATUS \"extracting... [analysis]\")
  861. file(GLOB contents \"\${ut_dir}/*\")
  862. list(LENGTH contents n)
  863. if(NOT n EQUAL 1 OR NOT IS_DIRECTORY \"\${contents}\")
  864. set(contents \"\${ut_dir}\")
  865. endif()
  866. # Move \"the one\" directory to the final directory:
  867. #
  868. message(STATUS \"extracting... [rename]\")
  869. file(REMOVE_RECURSE \${directory})
  870. get_filename_component(contents \${contents} ABSOLUTE)
  871. file(RENAME \${contents} \${directory})
  872. # Clean up:
  873. #
  874. message(STATUS \"extracting... [clean up]\")
  875. file(REMOVE_RECURSE \"\${ut_dir}\")
  876. message(STATUS \"extracting... done\")
  877. "
  878. )
  879. endfunction()
  880. function(_ep_set_directories name)
  881. get_property(prefix TARGET ${name} PROPERTY _EP_PREFIX)
  882. if(NOT prefix)
  883. get_property(prefix DIRECTORY PROPERTY EP_PREFIX)
  884. if(NOT prefix)
  885. get_property(base DIRECTORY PROPERTY EP_BASE)
  886. if(NOT base)
  887. set(prefix "${name}-prefix")
  888. endif()
  889. endif()
  890. endif()
  891. if(prefix)
  892. set(tmp_default "${prefix}/tmp")
  893. set(download_default "${prefix}/src")
  894. set(source_default "${prefix}/src/${name}")
  895. set(binary_default "${prefix}/src/${name}-build")
  896. set(stamp_default "${prefix}/src/${name}-stamp")
  897. set(install_default "${prefix}")
  898. else()
  899. set(tmp_default "${base}/tmp/${name}")
  900. set(download_default "${base}/Download/${name}")
  901. set(source_default "${base}/Source/${name}")
  902. set(binary_default "${base}/Build/${name}")
  903. set(stamp_default "${base}/Stamp/${name}")
  904. set(install_default "${base}/Install/${name}")
  905. endif()
  906. get_property(build_in_source TARGET ${name} PROPERTY _EP_BUILD_IN_SOURCE)
  907. if(build_in_source)
  908. get_property(have_binary_dir TARGET ${name} PROPERTY _EP_BINARY_DIR SET)
  909. if(have_binary_dir)
  910. message(FATAL_ERROR
  911. "External project ${name} has both BINARY_DIR and BUILD_IN_SOURCE!")
  912. endif()
  913. endif()
  914. set(top "${CMAKE_CURRENT_BINARY_DIR}")
  915. set(places stamp download source binary install tmp)
  916. foreach(var ${places})
  917. string(TOUPPER "${var}" VAR)
  918. get_property(${var}_dir TARGET ${name} PROPERTY _EP_${VAR}_DIR)
  919. if(NOT ${var}_dir)
  920. set(${var}_dir "${${var}_default}")
  921. endif()
  922. if(NOT IS_ABSOLUTE "${${var}_dir}")
  923. get_filename_component(${var}_dir "${top}/${${var}_dir}" ABSOLUTE)
  924. endif()
  925. set_property(TARGET ${name} PROPERTY _EP_${VAR}_DIR "${${var}_dir}")
  926. endforeach()
  927. if(build_in_source)
  928. get_property(source_dir TARGET ${name} PROPERTY _EP_SOURCE_DIR)
  929. set_property(TARGET ${name} PROPERTY _EP_BINARY_DIR "${source_dir}")
  930. endif()
  931. # Make the directories at CMake configure time *and* add a custom command
  932. # to make them at build time. They need to exist at makefile generation
  933. # time for Borland make and wmake so that CMake may generate makefiles
  934. # with "cd C:\short\paths\with\no\spaces" commands in them.
  935. #
  936. # Additionally, the add_custom_command is still used in case somebody
  937. # removes one of the necessary directories and tries to rebuild without
  938. # re-running cmake.
  939. foreach(var ${places})
  940. string(TOUPPER "${var}" VAR)
  941. get_property(dir TARGET ${name} PROPERTY _EP_${VAR}_DIR)
  942. file(MAKE_DIRECTORY "${dir}")
  943. if(NOT EXISTS "${dir}")
  944. message(FATAL_ERROR "dir '${dir}' does not exist after file(MAKE_DIRECTORY)")
  945. endif()
  946. endforeach()
  947. endfunction()
  948. # IMPORTANT: this MUST be a macro and not a function because of the
  949. # in-place replacements that occur in each ${var}
  950. #
  951. macro(_ep_replace_location_tags target_name)
  952. set(vars ${ARGN})
  953. foreach(var ${vars})
  954. if(${var})
  955. foreach(dir SOURCE_DIR BINARY_DIR INSTALL_DIR TMP_DIR DOWNLOADED_FILE)
  956. get_property(val TARGET ${target_name} PROPERTY _EP_${dir})
  957. string(REPLACE "<${dir}>" "${val}" ${var} "${${var}}")
  958. endforeach()
  959. endif()
  960. endforeach()
  961. endmacro()
  962. function(_ep_command_line_to_initial_cache var args force)
  963. set(script_initial_cache "")
  964. set(regex "^([^:]+):([^=]+)=(.*)$")
  965. set(setArg "")
  966. set(forceArg "")
  967. if(force)
  968. set(forceArg "FORCE")
  969. endif()
  970. foreach(line ${args})
  971. if("${line}" MATCHES "^-D(.*)")
  972. set(line "${CMAKE_MATCH_1}")
  973. if(setArg)
  974. # This is required to build up lists in variables, or complete an entry
  975. set(setArg "${setArg}${accumulator}\" CACHE ${type} \"Initial cache\" ${forceArg})")
  976. set(script_initial_cache "${script_initial_cache}\n${setArg}")
  977. set(accumulator "")
  978. set(setArg "")
  979. endif()
  980. if("${line}" MATCHES "${regex}")
  981. set(name "${CMAKE_MATCH_1}")
  982. set(type "${CMAKE_MATCH_2}")
  983. set(value "${CMAKE_MATCH_3}")
  984. set(setArg "set(${name} \"${value}")
  985. else()
  986. message(WARNING "Line '${line}' does not match regex. Ignoring.")
  987. endif()
  988. else()
  989. # Assume this is a list to append to the last var
  990. set(accumulator "${accumulator};${line}")
  991. endif()
  992. endforeach()
  993. # Catch the final line of the args
  994. if(setArg)
  995. set(setArg "${setArg}${accumulator}\" CACHE ${type} \"Initial cache\" ${forceArg})")
  996. set(script_initial_cache "${script_initial_cache}\n${setArg}")
  997. endif()
  998. set(${var} ${script_initial_cache} PARENT_SCOPE)
  999. endfunction()
  1000. function(_ep_write_initial_cache target_name script_filename script_initial_cache)
  1001. # Write out values into an initial cache, that will be passed to CMake with -C
  1002. # Replace location tags.
  1003. _ep_replace_location_tags(${target_name} script_initial_cache)
  1004. # Write out the initial cache file to the location specified.
  1005. file(GENERATE OUTPUT "${script_filename}" CONTENT "${script_initial_cache}")
  1006. endfunction()
  1007. function(ExternalProject_Get_Property name)
  1008. foreach(var ${ARGN})
  1009. string(TOUPPER "${var}" VAR)
  1010. get_property(${var} TARGET ${name} PROPERTY _EP_${VAR})
  1011. if(NOT ${var})
  1012. message(FATAL_ERROR "External project \"${name}\" has no ${var}")
  1013. endif()
  1014. set(${var} "${${var}}" PARENT_SCOPE)
  1015. endforeach()
  1016. endfunction()
  1017. function(_ep_get_configure_command_id name cfg_cmd_id_var)
  1018. get_target_property(cmd ${name} _EP_CONFIGURE_COMMAND)
  1019. if(cmd STREQUAL "")
  1020. # Explicit empty string means no configure step for this project
  1021. set(${cfg_cmd_id_var} "none" PARENT_SCOPE)
  1022. else()
  1023. if(NOT cmd)
  1024. # Default is "use cmake":
  1025. set(${cfg_cmd_id_var} "cmake" PARENT_SCOPE)
  1026. else()
  1027. # Otherwise we have to analyze the value:
  1028. if(cmd MATCHES "^[^;]*/configure")
  1029. set(${cfg_cmd_id_var} "configure" PARENT_SCOPE)
  1030. elseif(cmd MATCHES "^[^;]*/cmake" AND NOT cmd MATCHES ";-[PE];")
  1031. set(${cfg_cmd_id_var} "cmake" PARENT_SCOPE)
  1032. elseif(cmd MATCHES "config")
  1033. set(${cfg_cmd_id_var} "configure" PARENT_SCOPE)
  1034. else()
  1035. set(${cfg_cmd_id_var} "unknown:${cmd}" PARENT_SCOPE)
  1036. endif()
  1037. endif()
  1038. endif()
  1039. endfunction()
  1040. function(_ep_get_build_command name step cmd_var)
  1041. set(cmd "${${cmd_var}}")
  1042. if(NOT cmd)
  1043. set(args)
  1044. _ep_get_configure_command_id(${name} cfg_cmd_id)
  1045. if(cfg_cmd_id STREQUAL "cmake")
  1046. # CMake project. Select build command based on generator.
  1047. get_target_property(cmake_generator ${name} _EP_CMAKE_GENERATOR)
  1048. if("${CMAKE_GENERATOR}" MATCHES "Make" AND
  1049. ("${cmake_generator}" MATCHES "Make" OR NOT cmake_generator))
  1050. # The project uses the same Makefile generator. Use recursive make.
  1051. set(cmd "$(MAKE)")
  1052. if(step STREQUAL "INSTALL")
  1053. set(args install)
  1054. endif()
  1055. if("x${step}x" STREQUAL "xTESTx")
  1056. set(args test)
  1057. endif()
  1058. else()
  1059. # Drive the project with "cmake --build".
  1060. get_target_property(cmake_command ${name} _EP_CMAKE_COMMAND)
  1061. if(cmake_command)
  1062. set(cmd "${cmake_command}")
  1063. else()
  1064. set(cmd "${CMAKE_COMMAND}")
  1065. endif()
  1066. set(args --build ".")
  1067. if(CMAKE_CONFIGURATION_TYPES)
  1068. if (CMAKE_CFG_INTDIR AND
  1069. NOT CMAKE_CFG_INTDIR STREQUAL "." AND
  1070. NOT CMAKE_CFG_INTDIR MATCHES "\\$")
  1071. # CMake 3.4 and below used the CMAKE_CFG_INTDIR placeholder value
  1072. # provided by multi-configuration generators. Some projects were
  1073. # taking advantage of that undocumented implementation detail to
  1074. # specify a specific configuration here. They should use
  1075. # BUILD_COMMAND to change the default command instead, but for
  1076. # compatibility honor the value.
  1077. set(config ${CMAKE_CFG_INTDIR})
  1078. message(AUTHOR_WARNING "CMAKE_CFG_INTDIR should not be set by project code.\n"
  1079. "To get a non-default build command, use the BUILD_COMMAND option.")
  1080. else()
  1081. set(config $<CONFIG>)
  1082. endif()
  1083. list(APPEND args --config ${config})
  1084. endif()
  1085. if(step STREQUAL "INSTALL")
  1086. list(APPEND args --target install)
  1087. endif()
  1088. # But for "TEST" drive the project with corresponding "ctest".
  1089. if("x${step}x" STREQUAL "xTESTx")
  1090. string(REGEX REPLACE "^(.*/)cmake([^/]*)$" "\\1ctest\\2" cmd "${cmd}")
  1091. set(args "")
  1092. if(CMAKE_CONFIGURATION_TYPES)
  1093. list(APPEND args -C ${config})
  1094. endif()
  1095. endif()
  1096. endif()
  1097. else()
  1098. # Non-CMake project. Guess "make" and "make install" and "make test".
  1099. if("${CMAKE_GENERATOR}" MATCHES "Makefiles")
  1100. # Try to get the parallel arguments
  1101. set(cmd "$(MAKE)")
  1102. else()
  1103. set(cmd "make")
  1104. endif()
  1105. if(step STREQUAL "INSTALL")
  1106. set(args install)
  1107. endif()
  1108. if("x${step}x" STREQUAL "xTESTx")
  1109. set(args test)
  1110. endif()
  1111. endif()
  1112. # Use user-specified arguments instead of default arguments, if any.
  1113. get_property(have_args TARGET ${name} PROPERTY _EP_${step}_ARGS SET)
  1114. if(have_args)
  1115. get_target_property(args ${name} _EP_${step}_ARGS)
  1116. endif()
  1117. list(APPEND cmd ${args})
  1118. endif()
  1119. set(${cmd_var} "${cmd}" PARENT_SCOPE)
  1120. endfunction()
  1121. function(_ep_write_log_script name step cmd_var)
  1122. ExternalProject_Get_Property(${name} stamp_dir)
  1123. set(command "${${cmd_var}}")
  1124. set(make "")
  1125. set(code_cygpath_make "")
  1126. if(command MATCHES "^\\$\\(MAKE\\)")
  1127. # GNU make recognizes the string "$(MAKE)" as recursive make, so
  1128. # ensure that it appears directly in the makefile.
  1129. string(REGEX REPLACE "^\\$\\(MAKE\\)" "\${make}" command "${command}")
  1130. set(make "-Dmake=$(MAKE)")
  1131. if(WIN32 AND NOT CYGWIN)
  1132. set(code_cygpath_make "
  1133. if(\${make} MATCHES \"^/\")
  1134. execute_process(
  1135. COMMAND cygpath -w \${make}
  1136. OUTPUT_VARIABLE cygpath_make
  1137. ERROR_VARIABLE cygpath_make
  1138. RESULT_VARIABLE cygpath_error
  1139. OUTPUT_STRIP_TRAILING_WHITESPACE
  1140. )
  1141. if(NOT cygpath_error)
  1142. set(make \${cygpath_make})
  1143. endif()
  1144. endif()
  1145. ")
  1146. endif()
  1147. endif()
  1148. set(config "")
  1149. if("${CMAKE_CFG_INTDIR}" MATCHES "^\\$")
  1150. string(REPLACE "${CMAKE_CFG_INTDIR}" "\${config}" command "${command}")
  1151. set(config "-Dconfig=${CMAKE_CFG_INTDIR}")
  1152. endif()
  1153. # Wrap multiple 'COMMAND' lines up into a second-level wrapper
  1154. # script so all output can be sent to one log file.
  1155. if(command MATCHES "(^|;)COMMAND;")
  1156. set(code_execute_process "
  1157. ${code_cygpath_make}
  1158. execute_process(COMMAND \${command} RESULT_VARIABLE result)
  1159. if(result)
  1160. set(msg \"Command failed (\${result}):\\n\")
  1161. foreach(arg IN LISTS command)
  1162. set(msg \"\${msg} '\${arg}'\")
  1163. endforeach()
  1164. message(FATAL_ERROR \"\${msg}\")
  1165. endif()
  1166. ")
  1167. set(code "")
  1168. set(cmd "")
  1169. set(sep "")
  1170. foreach(arg IN LISTS command)
  1171. if("x${arg}" STREQUAL "xCOMMAND")
  1172. if(NOT "x${cmd}" STREQUAL "x")
  1173. set(code "${code}set(command \"${cmd}\")${code_execute_process}")
  1174. endif()
  1175. set(cmd "")
  1176. set(sep "")
  1177. else()
  1178. set(cmd "${cmd}${sep}${arg}")
  1179. set(sep ";")
  1180. endif()
  1181. endforeach()
  1182. set(code "${code}set(command \"${cmd}\")${code_execute_process}")
  1183. file(GENERATE OUTPUT "${stamp_dir}/${name}-${step}-$<CONFIG>-impl.cmake" CONTENT "${code}")
  1184. set(command ${CMAKE_COMMAND} "-Dmake=\${make}" "-Dconfig=\${config}" -P ${stamp_dir}/${name}-${step}-$<CONFIG>-impl.cmake)
  1185. endif()
  1186. # Wrap the command in a script to log output to files.
  1187. set(script ${stamp_dir}/${name}-${step}-$<CONFIG>.cmake)
  1188. set(logbase ${stamp_dir}/${name}-${step})
  1189. set(code "
  1190. ${code_cygpath_make}
  1191. set(command \"${command}\")
  1192. execute_process(
  1193. COMMAND \${command}
  1194. RESULT_VARIABLE result
  1195. OUTPUT_FILE \"${logbase}-out.log\"
  1196. ERROR_FILE \"${logbase}-err.log\"
  1197. )
  1198. if(result)
  1199. set(msg \"Command failed: \${result}\\n\")
  1200. foreach(arg IN LISTS command)
  1201. set(msg \"\${msg} '\${arg}'\")
  1202. endforeach()
  1203. set(msg \"\${msg}\\nSee also\\n ${logbase}-*.log\")
  1204. message(FATAL_ERROR \"\${msg}\")
  1205. else()
  1206. set(msg \"${name} ${step} command succeeded. See also ${logbase}-*.log\")
  1207. message(STATUS \"\${msg}\")
  1208. endif()
  1209. ")
  1210. file(GENERATE OUTPUT "${script}" CONTENT "${code}")
  1211. set(command ${CMAKE_COMMAND} ${make} ${config} -P ${script})
  1212. set(${cmd_var} "${command}" PARENT_SCOPE)
  1213. endfunction()
  1214. # This module used to use "/${CMAKE_CFG_INTDIR}" directly and produced
  1215. # makefiles with "/./" in paths for custom command dependencies. Which
  1216. # resulted in problems with parallel make -j invocations.
  1217. #
  1218. # This function was added so that the suffix (search below for ${cfgdir}) is
  1219. # only set to "/${CMAKE_CFG_INTDIR}" when ${CMAKE_CFG_INTDIR} is not going to
  1220. # be "." (multi-configuration build systems like Visual Studio and Xcode...)
  1221. #
  1222. function(_ep_get_configuration_subdir_suffix suffix_var)
  1223. set(suffix "")
  1224. if(CMAKE_CONFIGURATION_TYPES)
  1225. set(suffix "/${CMAKE_CFG_INTDIR}")
  1226. endif()
  1227. set(${suffix_var} "${suffix}" PARENT_SCOPE)
  1228. endfunction()
  1229. function(_ep_get_step_stampfile name step stampfile_var)
  1230. ExternalProject_Get_Property(${name} stamp_dir)
  1231. _ep_get_configuration_subdir_suffix(cfgdir)
  1232. set(stampfile "${stamp_dir}${cfgdir}/${name}-${step}")
  1233. set(${stampfile_var} "${stampfile}" PARENT_SCOPE)
  1234. endfunction()
  1235. function(ExternalProject_Add_StepTargets name)
  1236. set(steps ${ARGN})
  1237. if(ARGC GREATER 1 AND "${ARGV1}" STREQUAL "NO_DEPENDS")
  1238. set(no_deps 1)
  1239. list(REMOVE_AT steps 0)
  1240. endif()
  1241. foreach(step ${steps})
  1242. if(no_deps AND "${step}" MATCHES "^(configure|build|install|test)$")
  1243. message(AUTHOR_WARNING "Using NO_DEPENDS for \"${step}\" step might break parallel builds")
  1244. endif()
  1245. _ep_get_step_stampfile(${name} ${step} stamp_file)
  1246. add_custom_target(${name}-${step}
  1247. DEPENDS ${stamp_file})
  1248. set_property(TARGET ${name}-${step} PROPERTY _EP_IS_EXTERNAL_PROJECT_STEP 1)
  1249. set_property(TARGET ${name}-${step} PROPERTY LABELS ${name})
  1250. set_property(TARGET ${name}-${step} PROPERTY FOLDER "ExternalProjectTargets/${name}")
  1251. # Depend on other external projects (target-level).
  1252. if(NOT no_deps)
  1253. get_property(deps TARGET ${name} PROPERTY _EP_DEPENDS)
  1254. foreach(arg IN LISTS deps)
  1255. add_dependencies(${name}-${step} ${arg})
  1256. endforeach()
  1257. endif()
  1258. endforeach()
  1259. endfunction()
  1260. function(ExternalProject_Add_Step name step)
  1261. set(cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles)
  1262. _ep_get_configuration_subdir_suffix(cfgdir)
  1263. set(complete_stamp_file "${cmf_dir}${cfgdir}/${name}-complete")
  1264. _ep_get_step_stampfile(${name} ${step} stamp_file)
  1265. _ep_parse_arguments(ExternalProject_Add_Step
  1266. ${name} _EP_${step}_ "${ARGN}")
  1267. get_property(exclude_from_main TARGET ${name} PROPERTY _EP_${step}_EXCLUDE_FROM_MAIN)
  1268. if(NOT exclude_from_main)
  1269. add_custom_command(APPEND
  1270. OUTPUT ${complete_stamp_file}
  1271. DEPENDS ${stamp_file}
  1272. )
  1273. endif()
  1274. # Steps depending on this step.
  1275. get_property(dependers TARGET ${name} PROPERTY _EP_${step}_DEPENDERS)
  1276. foreach(depender IN LISTS dependers)
  1277. _ep_get_step_stampfile(${name} ${depender} depender_stamp_file)
  1278. add_custom_command(APPEND
  1279. OUTPUT ${depender_stamp_file}
  1280. DEPENDS ${stamp_file}
  1281. )
  1282. endforeach()
  1283. # Dependencies on files.
  1284. get_property(depends TARGET ${name} PROPERTY _EP_${step}_DEPENDS)
  1285. # Byproducts of the step.
  1286. get_property(byproducts TARGET ${name} PROPERTY _EP_${step}_BYPRODUCTS)
  1287. # Dependencies on steps.
  1288. get_property(dependees TARGET ${name} PROPERTY _EP_${step}_DEPENDEES)
  1289. foreach(dependee IN LISTS dependees)
  1290. _ep_get_step_stampfile(${name} ${dependee} dependee_stamp_file)
  1291. list(APPEND depends ${dependee_stamp_file})
  1292. endforeach()
  1293. # The command to run.
  1294. get_property(command TARGET ${name} PROPERTY _EP_${step}_COMMAND)
  1295. if(command)
  1296. set(comment "Performing ${step} step for '${name}'")
  1297. else()
  1298. set(comment "No ${step} step for '${name}'")
  1299. endif()
  1300. get_property(work_dir TARGET ${name} PROPERTY _EP_${step}_WORKING_DIRECTORY)
  1301. # Replace list separators.
  1302. get_property(sep TARGET ${name} PROPERTY _EP_LIST_SEPARATOR)
  1303. if(sep AND command)
  1304. string(REPLACE "${sep}" "\\;" command "${command}")
  1305. endif()
  1306. # Replace location tags.
  1307. _ep_replace_location_tags(${name} comment command work_dir byproducts)
  1308. # Custom comment?
  1309. get_property(comment_set TARGET ${name} PROPERTY _EP_${step}_COMMENT SET)
  1310. if(comment_set)
  1311. get_property(comment TARGET ${name} PROPERTY _EP_${step}_COMMENT)
  1312. endif()
  1313. # Uses terminal?
  1314. get_property(uses_terminal TARGET ${name} PROPERTY _EP_${step}_USES_TERMINAL)
  1315. if(uses_terminal)
  1316. set(uses_terminal USES_TERMINAL)
  1317. else()
  1318. set(uses_terminal "")
  1319. endif()
  1320. # Run every time?
  1321. get_property(always TARGET ${name} PROPERTY _EP_${step}_ALWAYS)
  1322. if(always)
  1323. set_property(SOURCE ${stamp_file} PROPERTY SYMBOLIC 1)
  1324. set(touch)
  1325. # Remove any existing stamp in case the option changed in an existing tree.
  1326. if(CMAKE_CONFIGURATION_TYPES)
  1327. foreach(cfg ${CMAKE_CONFIGURATION_TYPES})
  1328. string(REPLACE "/${CMAKE_CFG_INTDIR}" "/${cfg}" stamp_file_config "${stamp_file}")
  1329. file(REMOVE ${stamp_file_config})
  1330. endforeach()
  1331. else()
  1332. file(REMOVE ${stamp_file})
  1333. endif()
  1334. else()
  1335. set(touch ${CMAKE_COMMAND} -E touch ${stamp_file})
  1336. endif()
  1337. # Wrap with log script?
  1338. get_property(log TARGET ${name} PROPERTY _EP_${step}_LOG)
  1339. if(command AND log)
  1340. _ep_write_log_script(${name} ${step} command)
  1341. endif()
  1342. if("${command}" STREQUAL "")
  1343. # Some generators (i.e. Xcode) will not generate a file level target
  1344. # if no command is set, and therefore the dependencies on this
  1345. # target will be broken.
  1346. # The empty command is replaced by an echo command here in order to
  1347. # avoid this issue.
  1348. set(command ${CMAKE_COMMAND} -E echo_append)
  1349. endif()
  1350. add_custom_command(
  1351. OUTPUT ${stamp_file}
  1352. BYPRODUCTS ${byproducts}
  1353. COMMENT ${comment}
  1354. COMMAND ${command}
  1355. COMMAND ${touch}
  1356. DEPENDS ${depends}
  1357. WORKING_DIRECTORY ${work_dir}
  1358. VERBATIM
  1359. ${uses_terminal}
  1360. )
  1361. set_property(TARGET ${name} APPEND PROPERTY _EP_STEPS ${step})
  1362. # Add custom "step target"?
  1363. get_property(step_targets TARGET ${name} PROPERTY _EP_STEP_TARGETS)
  1364. if(NOT step_targets)
  1365. get_property(step_targets DIRECTORY PROPERTY EP_STEP_TARGETS)
  1366. endif()
  1367. foreach(st ${step_targets})
  1368. if("${st}" STREQUAL "${step}")
  1369. ExternalProject_Add_StepTargets(${name} ${step})
  1370. break()
  1371. endif()
  1372. endforeach()
  1373. get_property(independent_step_targets TARGET ${name} PROPERTY _EP_INDEPENDENT_STEP_TARGETS)
  1374. if(NOT independent_step_targets)
  1375. get_property(independent_step_targets DIRECTORY PROPERTY EP_INDEPENDENT_STEP_TARGETS)
  1376. endif()
  1377. foreach(st ${independent_step_targets})
  1378. if("${st}" STREQUAL "${step}")
  1379. ExternalProject_Add_StepTargets(${name} NO_DEPENDS ${step})
  1380. break()
  1381. endif()
  1382. endforeach()
  1383. endfunction()
  1384. function(ExternalProject_Add_StepDependencies name step)
  1385. set(dependencies ${ARGN})
  1386. # Sanity checks on "name" and "step".
  1387. if(NOT TARGET ${name})
  1388. message(FATAL_ERROR "Cannot find target \"${name}\". Perhaps it has not yet been created using ExternalProject_Add.")
  1389. endif()
  1390. get_property(type TARGET ${name} PROPERTY TYPE)
  1391. if(NOT type STREQUAL "UTILITY")
  1392. message(FATAL_ERROR "Target \"${name}\" was not generated by ExternalProject_Add.")
  1393. endif()
  1394. get_property(is_ep TARGET ${name} PROPERTY _EP_IS_EXTERNAL_PROJECT)
  1395. if(NOT is_ep)
  1396. message(FATAL_ERROR "Target \"${name}\" was not generated by ExternalProject_Add.")
  1397. endif()
  1398. get_property(steps TARGET ${name} PROPERTY _EP_STEPS)
  1399. list(FIND steps ${step} is_step)
  1400. if(NOT is_step)
  1401. message(FATAL_ERROR "External project \"${name}\" does not have a step \"${step}\".")
  1402. endif()
  1403. if(TARGET ${name}-${step})
  1404. get_property(type TARGET ${name}-${step} PROPERTY TYPE)
  1405. if(NOT type STREQUAL "UTILITY")
  1406. message(FATAL_ERROR "Target \"${name}-${step}\" was not generated by ExternalProject_Add_StepTargets.")
  1407. endif()
  1408. get_property(is_ep_step TARGET ${name}-${step} PROPERTY _EP_IS_EXTERNAL_PROJECT_STEP)
  1409. if(NOT is_ep_step)
  1410. message(FATAL_ERROR "Target \"${name}-${step}\" was not generated by ExternalProject_Add_StepTargets.")
  1411. endif()
  1412. endif()
  1413. # Always add file-level dependency, but add target-level dependency
  1414. # only if the target exists for that step.
  1415. _ep_get_step_stampfile(${name} ${step} stamp_file)
  1416. foreach(dep ${dependencies})
  1417. add_custom_command(APPEND
  1418. OUTPUT ${stamp_file}
  1419. DEPENDS ${dep})
  1420. if(TARGET ${name}-${step})
  1421. foreach(dep ${dependencies})
  1422. add_dependencies(${name}-${step} ${dep})
  1423. endforeach()
  1424. endif()
  1425. endforeach()
  1426. endfunction()
  1427. function(_ep_add_mkdir_command name)
  1428. ExternalProject_Get_Property(${name}
  1429. source_dir binary_dir install_dir stamp_dir download_dir tmp_dir)
  1430. _ep_get_configuration_subdir_suffix(cfgdir)
  1431. ExternalProject_Add_Step(${name} mkdir
  1432. COMMENT "Creating directories for '${name}'"
  1433. COMMAND ${CMAKE_COMMAND} -E make_directory ${source_dir}
  1434. COMMAND ${CMAKE_COMMAND} -E make_directory ${binary_dir}
  1435. COMMAND ${CMAKE_COMMAND} -E make_directory ${install_dir}
  1436. COMMAND ${CMAKE_COMMAND} -E make_directory ${tmp_dir}
  1437. COMMAND ${CMAKE_COMMAND} -E make_directory ${stamp_dir}${cfgdir}
  1438. COMMAND ${CMAKE_COMMAND} -E make_directory ${download_dir}
  1439. )
  1440. endfunction()
  1441. function(_ep_is_dir_empty dir empty_var)
  1442. file(GLOB gr "${dir}/*")
  1443. if("${gr}" STREQUAL "")
  1444. set(${empty_var} 1 PARENT_SCOPE)
  1445. else()
  1446. set(${empty_var} 0 PARENT_SCOPE)
  1447. endif()
  1448. endfunction()
  1449. function(_ep_add_download_command name)
  1450. ExternalProject_Get_Property(${name} source_dir stamp_dir download_dir tmp_dir)
  1451. get_property(cmd_set TARGET ${name} PROPERTY _EP_DOWNLOAD_COMMAND SET)
  1452. get_property(cmd TARGET ${name} PROPERTY _EP_DOWNLOAD_COMMAND)
  1453. get_property(cvs_repository TARGET ${name} PROPERTY _EP_CVS_REPOSITORY)
  1454. get_property(svn_repository TARGET ${name} PROPERTY _EP_SVN_REPOSITORY)
  1455. get_property(git_repository TARGET ${name} PROPERTY _EP_GIT_REPOSITORY)
  1456. get_property(hg_repository TARGET ${name} PROPERTY _EP_HG_REPOSITORY )
  1457. get_property(url TARGET ${name} PROPERTY _EP_URL)
  1458. get_property(fname TARGET ${name} PROPERTY _EP_DOWNLOAD_NAME)
  1459. # TODO: Perhaps file:// should be copied to download dir before extraction.
  1460. string(REGEX REPLACE "^file://" "" url "${url}")
  1461. set(depends)
  1462. set(comment)
  1463. set(work_dir)
  1464. if(cmd_set)
  1465. set(work_dir ${download_dir})
  1466. elseif(cvs_repository)
  1467. find_package(CVS QUIET)
  1468. if(NOT CVS_EXECUTABLE)
  1469. message(FATAL_ERROR "error: could not find cvs for checkout of ${name}")
  1470. endif()
  1471. get_target_property(cvs_module ${name} _EP_CVS_MODULE)
  1472. if(NOT cvs_module)
  1473. message(FATAL_ERROR "error: no CVS_MODULE")
  1474. endif()
  1475. get_property(cvs_tag TARGET ${name} PROPERTY _EP_CVS_TAG)
  1476. set(repository ${cvs_repository})
  1477. set(module ${cvs_module})
  1478. set(tag ${cvs_tag})
  1479. configure_file(
  1480. "${CMAKE_ROOT}/Modules/RepositoryInfo.txt.in"
  1481. "${stamp_dir}/${name}-cvsinfo.txt"
  1482. @ONLY
  1483. )
  1484. get_filename_component(src_name "${source_dir}" NAME)
  1485. get_filename_component(work_dir "${source_dir}" PATH)
  1486. set(comment "Performing download step (CVS checkout) for '${name}'")
  1487. set(cmd ${CVS_EXECUTABLE} -d ${cvs_repository} -q co ${cvs_tag} -d ${src_name} ${cvs_module})
  1488. list(APPEND depends ${stamp_dir}/${name}-cvsinfo.txt)
  1489. elseif(svn_repository)
  1490. find_package(Subversion QUIET)
  1491. if(NOT Subversion_SVN_EXECUTABLE)
  1492. message(FATAL_ERROR "error: could not find svn for checkout of ${name}")
  1493. endif()
  1494. get_property(svn_revision TARGET ${name} PROPERTY _EP_SVN_REVISION)
  1495. get_property(svn_username TARGET ${name} PROPERTY _EP_SVN_USERNAME)
  1496. get_property(svn_password TARGET ${name} PROPERTY _EP_SVN_PASSWORD)
  1497. get_property(svn_trust_cert TARGET ${name} PROPERTY _EP_SVN_TRUST_CERT)
  1498. set(repository "${svn_repository} user=${svn_username} password=${svn_password}")
  1499. set(module)
  1500. set(tag ${svn_revision})
  1501. configure_file(
  1502. "${CMAKE_ROOT}/Modules/RepositoryInfo.txt.in"
  1503. "${stamp_dir}/${name}-svninfo.txt"
  1504. @ONLY
  1505. )
  1506. get_filename_component(src_name "${source_dir}" NAME)
  1507. get_filename_component(work_dir "${source_dir}" PATH)
  1508. set(comment "Performing download step (SVN checkout) for '${name}'")
  1509. set(svn_user_pw_args "")
  1510. if(DEFINED svn_username)
  1511. set(svn_user_pw_args ${svn_user_pw_args} "--username=${svn_username}")
  1512. endif()
  1513. if(DEFINED svn_password)
  1514. set(svn_user_pw_args ${svn_user_pw_args} "--password=${svn_password}")
  1515. endif()
  1516. if(svn_trust_cert)
  1517. set(svn_trust_cert_args --trust-server-cert)
  1518. endif()
  1519. set(cmd ${Subversion_SVN_EXECUTABLE} co ${svn_repository} ${svn_revision}
  1520. --non-interactive ${svn_trust_cert_args} ${svn_user_pw_args} ${src_name})
  1521. list(APPEND depends ${stamp_dir}/${name}-svninfo.txt)
  1522. elseif(git_repository)
  1523. unset(CMAKE_MODULE_PATH) # Use CMake builtin find module
  1524. find_package(Git QUIET)
  1525. if(NOT GIT_EXECUTABLE)
  1526. message(FATAL_ERROR "error: could not find git for clone of ${name}")
  1527. endif()
  1528. # The git submodule update '--recursive' flag requires git >= v1.6.5
  1529. #
  1530. if(GIT_VERSION_STRING VERSION_LESS 1.6.5)
  1531. message(FATAL_ERROR "error: git version 1.6.5 or later required for 'git submodule update --recursive': GIT_VERSION_STRING='${GIT_VERSION_STRING}'")
  1532. endif()
  1533. get_property(git_tag TARGET ${name} PROPERTY _EP_GIT_TAG)
  1534. if(NOT git_tag)
  1535. set(git_tag "master")
  1536. endif()
  1537. get_property(git_submodules TARGET ${name} PROPERTY _EP_GIT_SUBMODULES)
  1538. get_property(git_remote_name TARGET ${name} PROPERTY _EP_GIT_REMOTE_NAME)
  1539. if(NOT git_remote_name)
  1540. set(git_remote_name "origin")
  1541. endif()
  1542. get_property(tls_verify TARGET ${name} PROPERTY _EP_TLS_VERIFY)
  1543. if("x${tls_verify}" STREQUAL "x" AND DEFINED CMAKE_TLS_VERIFY)
  1544. set(tls_verify "${CMAKE_TLS_VERIFY}")
  1545. endif()
  1546. get_property(git_shallow TARGET ${name} PROPERTY _EP_GIT_SHALLOW)
  1547. # For the download step, and the git clone operation, only the repository
  1548. # should be recorded in a configured RepositoryInfo file. If the repo
  1549. # changes, the clone script should be run again. But if only the tag
  1550. # changes, avoid running the clone script again. Let the 'always' running
  1551. # update step checkout the new tag.
  1552. #
  1553. set(repository ${git_repository})
  1554. set(module)
  1555. set(tag)
  1556. configure_file(
  1557. "${CMAKE_ROOT}/Modules/RepositoryInfo.txt.in"
  1558. "${stamp_dir}/${name}-gitinfo.txt"
  1559. @ONLY
  1560. )
  1561. get_filename_component(src_name "${source_dir}" NAME)
  1562. get_filename_component(work_dir "${source_dir}" PATH)
  1563. # Since git clone doesn't succeed if the non-empty source_dir exists,
  1564. # create a cmake script to invoke as download command.
  1565. # The script will delete the source directory and then call git clone.
  1566. #
  1567. _ep_write_gitclone_script(${tmp_dir}/${name}-gitclone.cmake ${source_dir}
  1568. ${GIT_EXECUTABLE} ${git_repository} ${git_tag} ${git_remote_name} "${git_submodules}" "${git_shallow}" ${src_name} ${work_dir}
  1569. ${stamp_dir}/${name}-gitinfo.txt ${stamp_dir}/${name}-gitclone-lastrun.txt "${tls_verify}"
  1570. )
  1571. set(comment "Performing download step (git clone) for '${name}'")
  1572. set(cmd ${CMAKE_COMMAND} -P ${tmp_dir}/${name}-gitclone.cmake)
  1573. list(APPEND depends ${stamp_dir}/${name}-gitinfo.txt)
  1574. elseif(hg_repository)
  1575. find_package(Hg QUIET)
  1576. if(NOT HG_EXECUTABLE)
  1577. message(FATAL_ERROR "error: could not find hg for clone of ${name}")
  1578. endif()
  1579. get_property(hg_tag TARGET ${name} PROPERTY _EP_HG_TAG)
  1580. if(NOT hg_tag)
  1581. set(hg_tag "tip")
  1582. endif()
  1583. # For the download step, and the hg clone operation, only the repository
  1584. # should be recorded in a configured RepositoryInfo file. If the repo
  1585. # changes, the clone script should be run again. But if only the tag
  1586. # changes, avoid running the clone script again. Let the 'always' running
  1587. # update step checkout the new tag.
  1588. #
  1589. set(repository ${hg_repository})
  1590. set(module)
  1591. set(tag)
  1592. configure_file(
  1593. "${CMAKE_ROOT}/Modules/RepositoryInfo.txt.in"
  1594. "${stamp_dir}/${name}-hginfo.txt"
  1595. @ONLY
  1596. )
  1597. get_filename_component(src_name "${source_dir}" NAME)
  1598. get_filename_component(work_dir "${source_dir}" PATH)
  1599. # Since hg clone doesn't succeed if the non-empty source_dir exists,
  1600. # create a cmake script to invoke as download command.
  1601. # The script will delete the source directory and then call hg clone.
  1602. #
  1603. _ep_write_hgclone_script(${tmp_dir}/${name}-hgclone.cmake ${source_dir}
  1604. ${HG_EXECUTABLE} ${hg_repository} ${hg_tag} ${src_name} ${work_dir}
  1605. ${stamp_dir}/${name}-hginfo.txt ${stamp_dir}/${name}-hgclone-lastrun.txt
  1606. )
  1607. set(comment "Performing download step (hg clone) for '${name}'")
  1608. set(cmd ${CMAKE_COMMAND} -P ${tmp_dir}/${name}-hgclone.cmake)
  1609. list(APPEND depends ${stamp_dir}/${name}-hginfo.txt)
  1610. elseif(url)
  1611. get_filename_component(work_dir "${source_dir}" PATH)
  1612. get_property(hash TARGET ${name} PROPERTY _EP_URL_HASH)
  1613. if(hash AND NOT "${hash}" MATCHES "${_ep_hash_regex}")
  1614. message(FATAL_ERROR "URL_HASH is set to\n ${hash}\n"
  1615. "but must be ALGO=value where ALGO is\n ${_ep_hash_algos}\n"
  1616. "and value is a hex string.")
  1617. endif()
  1618. get_property(md5 TARGET ${name} PROPERTY _EP_URL_MD5)
  1619. if(md5 AND NOT "MD5=${md5}" MATCHES "${_ep_hash_regex}")
  1620. message(FATAL_ERROR "URL_MD5 is set to\n ${md5}\nbut must be a hex string.")
  1621. endif()
  1622. if(md5 AND NOT hash)
  1623. set(hash "MD5=${md5}")
  1624. endif()
  1625. set(repository "external project URL")
  1626. set(module "${url}")
  1627. set(tag "${hash}")
  1628. configure_file(
  1629. "${CMAKE_ROOT}/Modules/RepositoryInfo.txt.in"
  1630. "${stamp_dir}/${name}-urlinfo.txt"
  1631. @ONLY
  1632. )
  1633. list(APPEND depends ${stamp_dir}/${name}-urlinfo.txt)
  1634. if(IS_DIRECTORY "${url}")
  1635. get_filename_component(abs_dir "${url}" ABSOLUTE)
  1636. set(comment "Performing download step (DIR copy) for '${name}'")
  1637. set(cmd ${CMAKE_COMMAND} -E remove_directory ${source_dir}
  1638. COMMAND ${CMAKE_COMMAND} -E copy_directory ${abs_dir} ${source_dir})
  1639. else()
  1640. get_property(no_extract TARGET "${name}" PROPERTY _EP_DOWNLOAD_NO_EXTRACT SET)
  1641. if("${url}" MATCHES "^[a-z]+://")
  1642. # TODO: Should download and extraction be different steps?
  1643. if("x${fname}" STREQUAL "x")
  1644. string(REGEX MATCH "[^/\\?]*$" fname "${url}")
  1645. endif()
  1646. if(NOT "${fname}" MATCHES "(\\.|=)(7z|tar|tar\\.bz2|tar\\.gz|tar\\.xz|tbz2|tgz|txz|zip)$")
  1647. string(REGEX MATCH "([^/\\?]+(\\.|=)(7z|tar|tar\\.bz2|tar\\.gz|tar\\.xz|tbz2|tgz|txz|zip))/.*$" match_result "${url}")
  1648. set(fname "${CMAKE_MATCH_1}")
  1649. endif()
  1650. if (no_extract)
  1651. get_filename_component(fname "${url}" NAME)
  1652. elseif(NOT "${fname}" MATCHES "(\\.|=)(7z|tar|tar\\.bz2|tar\\.gz|tar\\.xz|tbz2|tgz|txz|zip)$")
  1653. message(FATAL_ERROR "Could not extract tarball filename from url:\n ${url}")
  1654. endif()
  1655. string(REPLACE ";" "-" fname "${fname}")
  1656. set(file ${download_dir}/${fname})
  1657. get_property(timeout TARGET ${name} PROPERTY _EP_TIMEOUT)
  1658. get_property(no_progress TARGET ${name} PROPERTY _EP_DOWNLOAD_NO_PROGRESS)
  1659. get_property(tls_verify TARGET ${name} PROPERTY _EP_TLS_VERIFY)
  1660. get_property(tls_cainfo TARGET ${name} PROPERTY _EP_TLS_CAINFO)
  1661. set(download_script "${stamp_dir}/download-${name}.cmake")
  1662. _ep_write_downloadfile_script("${download_script}" "${url}" "${file}" "${timeout}" "${no_progress}" "${hash}" "${tls_verify}" "${tls_cainfo}")
  1663. set(cmd ${CMAKE_COMMAND} -P "${download_script}"
  1664. COMMAND)
  1665. if (no_extract)
  1666. set(steps "download and verify")
  1667. else ()
  1668. set(steps "download, verify and extract")
  1669. endif ()
  1670. set(comment "Performing download step (${steps}) for '${name}'")
  1671. file(WRITE "${stamp_dir}/verify-${name}.cmake" "") # already verified by 'download_script'
  1672. else()
  1673. set(file "${url}")
  1674. if (no_extract)
  1675. set(steps "verify")
  1676. else ()
  1677. set(steps "verify and extract")
  1678. endif ()
  1679. set(comment "Performing download step (${steps}) for '${name}'")
  1680. _ep_write_verifyfile_script("${stamp_dir}/verify-${name}.cmake" "${file}" "${hash}")
  1681. endif()
  1682. list(APPEND cmd ${CMAKE_COMMAND} -P ${stamp_dir}/verify-${name}.cmake
  1683. COMMAND)
  1684. if (NOT no_extract)
  1685. _ep_write_extractfile_script("${stamp_dir}/extract-${name}.cmake" "${name}" "${file}" "${source_dir}")
  1686. list(APPEND cmd ${CMAKE_COMMAND} -P ${stamp_dir}/extract-${name}.cmake)
  1687. else ()
  1688. set_property(TARGET ${name} PROPERTY _EP_DOWNLOADED_FILE ${file})
  1689. endif ()
  1690. endif()
  1691. else()
  1692. _ep_is_dir_empty("${source_dir}" empty)
  1693. if(${empty})
  1694. message(SEND_ERROR
  1695. "No download info given for '${name}' and its source directory:\n"
  1696. " ${source_dir}\n"
  1697. "is not an existing non-empty directory. Please specify one of:\n"
  1698. " * SOURCE_DIR with an existing non-empty directory\n"
  1699. " * URL\n"
  1700. " * GIT_REPOSITORY\n"
  1701. " * HG_REPOSITORY\n"
  1702. " * CVS_REPOSITORY and CVS_MODULE\n"
  1703. " * SVN_REVISION\n"
  1704. " * DOWNLOAD_COMMAND"
  1705. )
  1706. endif()
  1707. endif()
  1708. get_property(log TARGET ${name} PROPERTY _EP_LOG_DOWNLOAD)
  1709. if(log)
  1710. set(log LOG 1)
  1711. else()
  1712. set(log "")
  1713. endif()
  1714. get_property(uses_terminal TARGET ${name} PROPERTY
  1715. _EP_USES_TERMINAL_DOWNLOAD)
  1716. if(uses_terminal)
  1717. set(uses_terminal USES_TERMINAL 1)
  1718. else()
  1719. set(uses_terminal "")
  1720. endif()
  1721. ExternalProject_Add_Step(${name} download
  1722. COMMENT ${comment}
  1723. COMMAND ${cmd}
  1724. WORKING_DIRECTORY ${work_dir}
  1725. DEPENDS ${depends}
  1726. DEPENDEES mkdir
  1727. ${log}
  1728. ${uses_terminal}
  1729. )
  1730. endfunction()
  1731. function(_ep_add_update_command name)
  1732. ExternalProject_Get_Property(${name} source_dir tmp_dir)
  1733. get_property(cmd_set TARGET ${name} PROPERTY _EP_UPDATE_COMMAND SET)
  1734. get_property(cmd TARGET ${name} PROPERTY _EP_UPDATE_COMMAND)
  1735. get_property(cvs_repository TARGET ${name} PROPERTY _EP_CVS_REPOSITORY)
  1736. get_property(svn_repository TARGET ${name} PROPERTY _EP_SVN_REPOSITORY)
  1737. get_property(git_repository TARGET ${name} PROPERTY _EP_GIT_REPOSITORY)
  1738. get_property(hg_repository TARGET ${name} PROPERTY _EP_HG_REPOSITORY )
  1739. get_property(update_disconnected_set TARGET ${name} PROPERTY _EP_UPDATE_DISCONNECTED SET)
  1740. if(update_disconnected_set)
  1741. get_property(update_disconnected TARGET ${name} PROPERTY _EP_UPDATE_DISCONNECTED)
  1742. else()
  1743. get_property(update_disconnected DIRECTORY PROPERTY EP_UPDATE_DISCONNECTED)
  1744. endif()
  1745. set(work_dir)
  1746. set(comment)
  1747. set(always)
  1748. if(cmd_set)
  1749. set(work_dir ${source_dir})
  1750. if(NOT "x${cmd}" STREQUAL "x")
  1751. set(always 1)
  1752. endif()
  1753. elseif(cvs_repository)
  1754. if(NOT CVS_EXECUTABLE)
  1755. message(FATAL_ERROR "error: could not find cvs for update of ${name}")
  1756. endif()
  1757. set(work_dir ${source_dir})
  1758. set(comment "Performing update step (CVS update) for '${name}'")
  1759. get_property(cvs_tag TARGET ${name} PROPERTY _EP_CVS_TAG)
  1760. set(cmd ${CVS_EXECUTABLE} -d ${cvs_repository} -q up -dP ${cvs_tag})
  1761. set(always 1)
  1762. elseif(svn_repository)
  1763. if(NOT Subversion_SVN_EXECUTABLE)
  1764. message(FATAL_ERROR "error: could not find svn for update of ${name}")
  1765. endif()
  1766. set(work_dir ${source_dir})
  1767. set(comment "Performing update step (SVN update) for '${name}'")
  1768. get_property(svn_revision TARGET ${name} PROPERTY _EP_SVN_REVISION)
  1769. get_property(svn_username TARGET ${name} PROPERTY _EP_SVN_USERNAME)
  1770. get_property(svn_password TARGET ${name} PROPERTY _EP_SVN_PASSWORD)
  1771. get_property(svn_trust_cert TARGET ${name} PROPERTY _EP_SVN_TRUST_CERT)
  1772. set(svn_user_pw_args "")
  1773. if(DEFINED svn_username)
  1774. set(svn_user_pw_args ${svn_user_pw_args} "--username=${svn_username}")
  1775. endif()
  1776. if(DEFINED svn_password)
  1777. set(svn_user_pw_args ${svn_user_pw_args} "--password=${svn_password}")
  1778. endif()
  1779. if(svn_trust_cert)
  1780. set(svn_trust_cert_args --trust-server-cert)
  1781. endif()
  1782. set(cmd ${Subversion_SVN_EXECUTABLE} up ${svn_revision}
  1783. --non-interactive ${svn_trust_cert_args} ${svn_user_pw_args})
  1784. set(always 1)
  1785. elseif(git_repository)
  1786. unset(CMAKE_MODULE_PATH) # Use CMake builtin find module
  1787. find_package(Git QUIET)
  1788. if(NOT GIT_EXECUTABLE)
  1789. message(FATAL_ERROR "error: could not find git for fetch of ${name}")
  1790. endif()
  1791. set(work_dir ${source_dir})
  1792. set(comment "Performing update step for '${name}'")
  1793. get_property(git_tag TARGET ${name} PROPERTY _EP_GIT_TAG)
  1794. if(NOT git_tag)
  1795. set(git_tag "master")
  1796. endif()
  1797. get_property(git_remote_name TARGET ${name} PROPERTY _EP_GIT_REMOTE_NAME)
  1798. if(NOT git_remote_name)
  1799. set(git_remote_name "origin")
  1800. endif()
  1801. get_property(git_submodules TARGET ${name} PROPERTY _EP_GIT_SUBMODULES)
  1802. _ep_write_gitupdate_script(${tmp_dir}/${name}-gitupdate.cmake
  1803. ${GIT_EXECUTABLE} ${git_tag} ${git_remote_name} "${git_submodules}" ${git_repository} ${work_dir}
  1804. )
  1805. set(cmd ${CMAKE_COMMAND} -P ${tmp_dir}/${name}-gitupdate.cmake)
  1806. set(always 1)
  1807. elseif(hg_repository)
  1808. if(NOT HG_EXECUTABLE)
  1809. message(FATAL_ERROR "error: could not find hg for pull of ${name}")
  1810. endif()
  1811. set(work_dir ${source_dir})
  1812. set(comment "Performing update step (hg pull) for '${name}'")
  1813. get_property(hg_tag TARGET ${name} PROPERTY _EP_HG_TAG)
  1814. if(NOT hg_tag)
  1815. set(hg_tag "tip")
  1816. endif()
  1817. if("${HG_VERSION_STRING}" STREQUAL "2.1")
  1818. message(WARNING "Mercurial 2.1 does not distinguish an empty pull from a failed pull:
  1819. http://mercurial.selenic.com/wiki/UpgradeNotes#A2.1.1:_revert_pull_return_code_change.2C_compile_issue_on_OS_X
  1820. http://thread.gmane.org/gmane.comp.version-control.mercurial.devel/47656
  1821. Update to Mercurial >= 2.1.1.
  1822. ")
  1823. endif()
  1824. set(cmd ${HG_EXECUTABLE} pull
  1825. COMMAND ${HG_EXECUTABLE} update ${hg_tag}
  1826. )
  1827. set(always 1)
  1828. endif()
  1829. get_property(log TARGET ${name} PROPERTY _EP_LOG_UPDATE)
  1830. if(log)
  1831. set(log LOG 1)
  1832. else()
  1833. set(log "")
  1834. endif()
  1835. get_property(uses_terminal TARGET ${name} PROPERTY
  1836. _EP_USES_TERMINAL_UPDATE)
  1837. if(uses_terminal)
  1838. set(uses_terminal USES_TERMINAL 1)
  1839. else()
  1840. set(uses_terminal "")
  1841. endif()
  1842. ExternalProject_Add_Step(${name} update
  1843. COMMENT ${comment}
  1844. COMMAND ${cmd}
  1845. ALWAYS ${always}
  1846. EXCLUDE_FROM_MAIN ${update_disconnected}
  1847. WORKING_DIRECTORY ${work_dir}
  1848. DEPENDEES download
  1849. ${log}
  1850. ${uses_terminal}
  1851. )
  1852. if(always AND update_disconnected)
  1853. _ep_get_step_stampfile(${name} skip-update skip-update_stamp_file)
  1854. string(REPLACE "Performing" "Skipping" comment "${comment}")
  1855. ExternalProject_Add_Step(${name} skip-update
  1856. COMMENT ${comment}
  1857. ALWAYS 1
  1858. EXCLUDE_FROM_MAIN 1
  1859. WORKING_DIRECTORY ${work_dir}
  1860. DEPENDEES download
  1861. ${log}
  1862. ${uses_terminal}
  1863. )
  1864. set_property(SOURCE ${skip-update_stamp_file} PROPERTY SYMBOLIC 1)
  1865. endif()
  1866. endfunction()
  1867. function(_ep_add_patch_command name)
  1868. ExternalProject_Get_Property(${name} source_dir)
  1869. get_property(cmd_set TARGET ${name} PROPERTY _EP_PATCH_COMMAND SET)
  1870. get_property(cmd TARGET ${name} PROPERTY _EP_PATCH_COMMAND)
  1871. set(work_dir)
  1872. if(cmd_set)
  1873. set(work_dir ${source_dir})
  1874. endif()
  1875. ExternalProject_Add_Step(${name} patch
  1876. COMMAND ${cmd}
  1877. WORKING_DIRECTORY ${work_dir}
  1878. DEPENDEES download
  1879. )
  1880. endfunction()
  1881. # TODO: Make sure external projects use the proper compiler
  1882. function(_ep_add_configure_command name)
  1883. ExternalProject_Get_Property(${name} source_dir binary_dir tmp_dir)
  1884. # Depend on other external projects (file-level).
  1885. set(file_deps)
  1886. get_property(deps TARGET ${name} PROPERTY _EP_DEPENDS)
  1887. foreach(dep IN LISTS deps)
  1888. get_property(dep_type TARGET ${dep} PROPERTY TYPE)
  1889. if(dep_type STREQUAL "UTILITY")
  1890. get_property(is_ep TARGET ${dep} PROPERTY _EP_IS_EXTERNAL_PROJECT)
  1891. if(is_ep)
  1892. _ep_get_step_stampfile(${dep} "done" done_stamp_file)
  1893. list(APPEND file_deps ${done_stamp_file})
  1894. endif()
  1895. endif()
  1896. endforeach()
  1897. get_property(cmd_set TARGET ${name} PROPERTY _EP_CONFIGURE_COMMAND SET)
  1898. if(cmd_set)
  1899. get_property(cmd TARGET ${name} PROPERTY _EP_CONFIGURE_COMMAND)
  1900. else()
  1901. get_target_property(cmake_command ${name} _EP_CMAKE_COMMAND)
  1902. if(cmake_command)
  1903. set(cmd "${cmake_command}")
  1904. else()
  1905. set(cmd "${CMAKE_COMMAND}")
  1906. endif()
  1907. get_property(cmake_args TARGET ${name} PROPERTY _EP_CMAKE_ARGS)
  1908. list(APPEND cmd ${cmake_args})
  1909. # If there are any CMAKE_CACHE_ARGS or CMAKE_CACHE_DEFAULT_ARGS,
  1910. # write an initial cache and use it
  1911. get_property(cmake_cache_args TARGET ${name} PROPERTY _EP_CMAKE_CACHE_ARGS)
  1912. get_property(cmake_cache_default_args TARGET ${name} PROPERTY _EP_CMAKE_CACHE_DEFAULT_ARGS)
  1913. if(cmake_cache_args OR cmake_cache_default_args)
  1914. set(_ep_cache_args_script "${tmp_dir}/${name}-cache-$<CONFIG>.cmake")
  1915. if(cmake_cache_args)
  1916. _ep_command_line_to_initial_cache(script_initial_cache_force "${cmake_cache_args}" 1)
  1917. endif()
  1918. if(cmake_cache_default_args)
  1919. _ep_command_line_to_initial_cache(script_initial_cache_default "${cmake_cache_default_args}" 0)
  1920. endif()
  1921. _ep_write_initial_cache(${name} "${_ep_cache_args_script}" "${script_initial_cache_force}${script_initial_cache_default}")
  1922. list(APPEND cmd "-C${_ep_cache_args_script}")
  1923. endif()
  1924. get_target_property(cmake_generator ${name} _EP_CMAKE_GENERATOR)
  1925. get_target_property(cmake_generator_platform ${name} _EP_CMAKE_GENERATOR_PLATFORM)
  1926. get_target_property(cmake_generator_toolset ${name} _EP_CMAKE_GENERATOR_TOOLSET)
  1927. if(cmake_generator)
  1928. list(APPEND cmd "-G${cmake_generator}")
  1929. if(cmake_generator_platform)
  1930. list(APPEND cmd "-A${cmake_generator_platform}")
  1931. endif()
  1932. if(cmake_generator_toolset)
  1933. list(APPEND cmd "-T${cmake_generator_toolset}")
  1934. endif()
  1935. else()
  1936. if(CMAKE_EXTRA_GENERATOR)
  1937. list(APPEND cmd "-G${CMAKE_EXTRA_GENERATOR} - ${CMAKE_GENERATOR}")
  1938. else()
  1939. list(APPEND cmd "-G${CMAKE_GENERATOR}")
  1940. endif()
  1941. if(cmake_generator_platform)
  1942. message(FATAL_ERROR "Option CMAKE_GENERATOR_PLATFORM not allowed without CMAKE_GENERATOR.")
  1943. endif()
  1944. if(CMAKE_GENERATOR_PLATFORM)
  1945. list(APPEND cmd "-A${CMAKE_GENERATOR_PLATFORM}")
  1946. endif()
  1947. if(cmake_generator_toolset)
  1948. message(FATAL_ERROR "Option CMAKE_GENERATOR_TOOLSET not allowed without CMAKE_GENERATOR.")
  1949. endif()
  1950. if(CMAKE_GENERATOR_TOOLSET)
  1951. list(APPEND cmd "-T${CMAKE_GENERATOR_TOOLSET}")
  1952. endif()
  1953. endif()
  1954. list(APPEND cmd "${source_dir}")
  1955. endif()
  1956. # If anything about the configure command changes, (command itself, cmake
  1957. # used, cmake args or cmake generator) then re-run the configure step.
  1958. # Fixes issue http://public.kitware.com/Bug/view.php?id=10258
  1959. #
  1960. if(NOT EXISTS ${tmp_dir}/${name}-cfgcmd.txt.in)
  1961. file(WRITE ${tmp_dir}/${name}-cfgcmd.txt.in "cmd='\@cmd\@'\n")
  1962. endif()
  1963. configure_file(${tmp_dir}/${name}-cfgcmd.txt.in ${tmp_dir}/${name}-cfgcmd.txt)
  1964. list(APPEND file_deps ${tmp_dir}/${name}-cfgcmd.txt)
  1965. list(APPEND file_deps ${_ep_cache_args_script})
  1966. get_property(log TARGET ${name} PROPERTY _EP_LOG_CONFIGURE)
  1967. if(log)
  1968. set(log LOG 1)
  1969. else()
  1970. set(log "")
  1971. endif()
  1972. get_property(uses_terminal TARGET ${name} PROPERTY
  1973. _EP_USES_TERMINAL_CONFIGURE)
  1974. if(uses_terminal)
  1975. set(uses_terminal USES_TERMINAL 1)
  1976. else()
  1977. set(uses_terminal "")
  1978. endif()
  1979. get_property(update_disconnected_set TARGET ${name} PROPERTY _EP_UPDATE_DISCONNECTED SET)
  1980. if(update_disconnected_set)
  1981. get_property(update_disconnected TARGET ${name} PROPERTY _EP_UPDATE_DISCONNECTED)
  1982. else()
  1983. get_property(update_disconnected DIRECTORY PROPERTY EP_UPDATE_DISCONNECTED)
  1984. endif()
  1985. if(update_disconnected)
  1986. set(update_dep skip-update)
  1987. else()
  1988. set(update_dep update)
  1989. endif()
  1990. ExternalProject_Add_Step(${name} configure
  1991. COMMAND ${cmd}
  1992. WORKING_DIRECTORY ${binary_dir}
  1993. DEPENDEES ${update_dep} patch
  1994. DEPENDS ${file_deps}
  1995. ${log}
  1996. ${uses_terminal}
  1997. )
  1998. endfunction()
  1999. function(_ep_add_build_command name)
  2000. ExternalProject_Get_Property(${name} binary_dir)
  2001. get_property(cmd_set TARGET ${name} PROPERTY _EP_BUILD_COMMAND SET)
  2002. if(cmd_set)
  2003. get_property(cmd TARGET ${name} PROPERTY _EP_BUILD_COMMAND)
  2004. else()
  2005. _ep_get_build_command(${name} BUILD cmd)
  2006. endif()
  2007. get_property(log TARGET ${name} PROPERTY _EP_LOG_BUILD)
  2008. if(log)
  2009. set(log LOG 1)
  2010. else()
  2011. set(log "")
  2012. endif()
  2013. get_property(uses_terminal TARGET ${name} PROPERTY
  2014. _EP_USES_TERMINAL_BUILD)
  2015. if(uses_terminal)
  2016. set(uses_terminal USES_TERMINAL 1)
  2017. else()
  2018. set(uses_terminal "")
  2019. endif()
  2020. get_property(build_always TARGET ${name} PROPERTY _EP_BUILD_ALWAYS)
  2021. if(build_always)
  2022. set(always 1)
  2023. else()
  2024. set(always 0)
  2025. endif()
  2026. get_property(build_byproducts TARGET ${name} PROPERTY _EP_BUILD_BYPRODUCTS)
  2027. ExternalProject_Add_Step(${name} build
  2028. COMMAND ${cmd}
  2029. BYPRODUCTS ${build_byproducts}
  2030. WORKING_DIRECTORY ${binary_dir}
  2031. DEPENDEES configure
  2032. ALWAYS ${always}
  2033. ${log}
  2034. ${uses_terminal}
  2035. )
  2036. endfunction()
  2037. function(_ep_add_install_command name)
  2038. ExternalProject_Get_Property(${name} binary_dir)
  2039. get_property(cmd_set TARGET ${name} PROPERTY _EP_INSTALL_COMMAND SET)
  2040. if(cmd_set)
  2041. get_property(cmd TARGET ${name} PROPERTY _EP_INSTALL_COMMAND)
  2042. else()
  2043. _ep_get_build_command(${name} INSTALL cmd)
  2044. endif()
  2045. get_property(log TARGET ${name} PROPERTY _EP_LOG_INSTALL)
  2046. if(log)
  2047. set(log LOG 1)
  2048. else()
  2049. set(log "")
  2050. endif()
  2051. get_property(uses_terminal TARGET ${name} PROPERTY
  2052. _EP_USES_TERMINAL_INSTALL)
  2053. if(uses_terminal)
  2054. set(uses_terminal USES_TERMINAL 1)
  2055. else()
  2056. set(uses_terminal "")
  2057. endif()
  2058. ExternalProject_Add_Step(${name} install
  2059. COMMAND ${cmd}
  2060. WORKING_DIRECTORY ${binary_dir}
  2061. DEPENDEES build
  2062. ${log}
  2063. ${uses_terminal}
  2064. )
  2065. endfunction()
  2066. function(_ep_add_test_command name)
  2067. ExternalProject_Get_Property(${name} binary_dir)
  2068. get_property(before TARGET ${name} PROPERTY _EP_TEST_BEFORE_INSTALL)
  2069. get_property(after TARGET ${name} PROPERTY _EP_TEST_AFTER_INSTALL)
  2070. get_property(exclude TARGET ${name} PROPERTY _EP_TEST_EXCLUDE_FROM_MAIN)
  2071. get_property(cmd_set TARGET ${name} PROPERTY _EP_TEST_COMMAND SET)
  2072. # Only actually add the test step if one of the test related properties is
  2073. # explicitly set. (i.e. the test step is omitted unless requested...)
  2074. #
  2075. if(cmd_set OR before OR after OR exclude)
  2076. if(cmd_set)
  2077. get_property(cmd TARGET ${name} PROPERTY _EP_TEST_COMMAND)
  2078. else()
  2079. _ep_get_build_command(${name} TEST cmd)
  2080. endif()
  2081. if(before)
  2082. set(dependees_args DEPENDEES build)
  2083. else()
  2084. set(dependees_args DEPENDEES install)
  2085. endif()
  2086. if(exclude)
  2087. set(dependers_args "")
  2088. set(exclude_args EXCLUDE_FROM_MAIN 1)
  2089. else()
  2090. if(before)
  2091. set(dependers_args DEPENDERS install)
  2092. else()
  2093. set(dependers_args "")
  2094. endif()
  2095. set(exclude_args "")
  2096. endif()
  2097. get_property(log TARGET ${name} PROPERTY _EP_LOG_TEST)
  2098. if(log)
  2099. set(log LOG 1)
  2100. else()
  2101. set(log "")
  2102. endif()
  2103. get_property(uses_terminal TARGET ${name} PROPERTY
  2104. _EP_USES_TERMINAL_TEST)
  2105. if(uses_terminal)
  2106. set(uses_terminal USES_TERMINAL 1)
  2107. else()
  2108. set(uses_terminal "")
  2109. endif()
  2110. ExternalProject_Add_Step(${name} test
  2111. COMMAND ${cmd}
  2112. WORKING_DIRECTORY ${binary_dir}
  2113. ${dependees_args}
  2114. ${dependers_args}
  2115. ${exclude_args}
  2116. ${log}
  2117. ${uses_terminal}
  2118. )
  2119. endif()
  2120. endfunction()
  2121. function(ExternalProject_Add name)
  2122. _ep_get_configuration_subdir_suffix(cfgdir)
  2123. # Add a custom target for the external project.
  2124. set(cmf_dir ${CMAKE_CURRENT_BINARY_DIR}/CMakeFiles)
  2125. set(complete_stamp_file "${cmf_dir}${cfgdir}/${name}-complete")
  2126. # The "ALL" option to add_custom_target just tells it to not set the
  2127. # EXCLUDE_FROM_ALL target property. Later, if the EXCLUDE_FROM_ALL
  2128. # argument was passed, we explicitly set it for the target.
  2129. add_custom_target(${name} ALL DEPENDS ${complete_stamp_file})
  2130. set_property(TARGET ${name} PROPERTY _EP_IS_EXTERNAL_PROJECT 1)
  2131. set_property(TARGET ${name} PROPERTY LABELS ${name})
  2132. set_property(TARGET ${name} PROPERTY FOLDER "ExternalProjectTargets/${name}")
  2133. _ep_parse_arguments(ExternalProject_Add ${name} _EP_ "${ARGN}")
  2134. _ep_set_directories(${name})
  2135. _ep_get_step_stampfile(${name} "done" done_stamp_file)
  2136. _ep_get_step_stampfile(${name} "install" install_stamp_file)
  2137. # Set the EXCLUDE_FROM_ALL target property if required.
  2138. get_property(exclude_from_all TARGET ${name} PROPERTY _EP_EXCLUDE_FROM_ALL)
  2139. if(exclude_from_all)
  2140. set_property(TARGET ${name} PROPERTY EXCLUDE_FROM_ALL TRUE)
  2141. endif()
  2142. # The 'complete' step depends on all other steps and creates a
  2143. # 'done' mark. A dependent external project's 'configure' step
  2144. # depends on the 'done' mark so that it rebuilds when this project
  2145. # rebuilds. It is important that 'done' is not the output of any
  2146. # custom command so that CMake does not propagate build rules to
  2147. # other external project targets, which may cause problems during
  2148. # parallel builds. However, the Ninja generator needs to see the entire
  2149. # dependency graph, and can cope with custom commands belonging to
  2150. # multiple targets, so we add the 'done' mark as an output for Ninja only.
  2151. set(complete_outputs ${complete_stamp_file})
  2152. if(${CMAKE_GENERATOR} MATCHES "Ninja")
  2153. set(complete_outputs ${complete_outputs} ${done_stamp_file})
  2154. endif()
  2155. add_custom_command(
  2156. OUTPUT ${complete_outputs}
  2157. COMMENT "Completed '${name}'"
  2158. COMMAND ${CMAKE_COMMAND} -E make_directory ${cmf_dir}${cfgdir}
  2159. COMMAND ${CMAKE_COMMAND} -E touch ${complete_stamp_file}
  2160. COMMAND ${CMAKE_COMMAND} -E touch ${done_stamp_file}
  2161. DEPENDS ${install_stamp_file}
  2162. VERBATIM
  2163. )
  2164. # Depend on other external projects (target-level).
  2165. get_property(deps TARGET ${name} PROPERTY _EP_DEPENDS)
  2166. foreach(arg IN LISTS deps)
  2167. add_dependencies(${name} ${arg})
  2168. endforeach()
  2169. # Set up custom build steps based on the target properties.
  2170. # Each step depends on the previous one.
  2171. #
  2172. # The target depends on the output of the final step.
  2173. # (Already set up above in the DEPENDS of the add_custom_target command.)
  2174. #
  2175. _ep_add_mkdir_command(${name})
  2176. _ep_add_download_command(${name})
  2177. _ep_add_update_command(${name})
  2178. _ep_add_patch_command(${name})
  2179. _ep_add_configure_command(${name})
  2180. _ep_add_build_command(${name})
  2181. _ep_add_install_command(${name})
  2182. # Test is special in that it might depend on build, or it might depend
  2183. # on install.
  2184. #
  2185. _ep_add_test_command(${name})
  2186. endfunction()