cmake-generator-expressions.7.rst 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792
  1. .. cmake-manual-description: CMake Generator Expressions
  2. cmake-generator-expressions(7)
  3. ******************************
  4. .. only:: html
  5. .. contents::
  6. Introduction
  7. ============
  8. Generator expressions are evaluated during build system generation to produce
  9. information specific to each build configuration.
  10. Generator expressions are allowed in the context of many target properties,
  11. such as :prop_tgt:`LINK_LIBRARIES`, :prop_tgt:`INCLUDE_DIRECTORIES`,
  12. :prop_tgt:`COMPILE_DEFINITIONS` and others. They may also be used when using
  13. commands to populate those properties, such as :command:`target_link_libraries`,
  14. :command:`target_include_directories`, :command:`target_compile_definitions`
  15. and others.
  16. They enable conditional linking, conditional definitions used when compiling,
  17. conditional include directories, and more. The conditions may be based on
  18. the build configuration, target properties, platform information or any other
  19. queryable information.
  20. Generator expressions have the form ``$<...>``. To avoid confusion, this page
  21. deviates from most of the CMake documentation in that it omits angular brackets
  22. ``<...>`` around placeholders like ``condition``, ``string``, ``target``,
  23. among others.
  24. Generator expressions can be nested, as shown in most of the examples below.
  25. .. _`Boolean Generator Expressions`:
  26. Boolean Generator Expressions
  27. =============================
  28. Boolean expressions evaluate to either ``0`` or ``1``.
  29. They are typically used to construct the condition in a :ref:`conditional
  30. generator expression<Conditional Generator Expressions>`.
  31. Available boolean expressions are:
  32. Logical Operators
  33. -----------------
  34. ``$<BOOL:string>``
  35. Converts ``string`` to ``0`` or ``1``. Evaluates to ``0`` if any of the
  36. following is true:
  37. * ``string`` is empty,
  38. * ``string`` is a case-insensitive equal of
  39. ``0``, ``FALSE``, ``OFF``, ``N``, ``NO``, ``IGNORE``, or ``NOTFOUND``, or
  40. * ``string`` ends in the suffix ``-NOTFOUND`` (case-sensitive).
  41. Otherwise evaluates to ``1``.
  42. ``$<AND:conditions>``
  43. where ``conditions`` is a comma-separated list of boolean expressions.
  44. Evaluates to ``1`` if all conditions are ``1``.
  45. Otherwise evaluates to ``0``.
  46. ``$<OR:conditions>``
  47. where ``conditions`` is a comma-separated list of boolean expressions.
  48. Evaluates to ``1`` if at least one of the conditions is ``1``.
  49. Otherwise evaluates to ``0``.
  50. ``$<NOT:condition>``
  51. ``0`` if ``condition`` is ``1``, else ``1``.
  52. String Comparisons
  53. ------------------
  54. ``$<STREQUAL:string1,string2>``
  55. ``1`` if ``string1`` and ``string2`` are equal, else ``0``.
  56. The comparison is case-sensitive. For a case-insensitive comparison,
  57. combine with a :ref:`string transforming generator expression
  58. <String Transforming Generator Expressions>`,
  59. .. code-block:: cmake
  60. $<STREQUAL:$<UPPER_CASE:${foo}>,"BAR"> # "1" if ${foo} is any of "BAR", "Bar", "bar", ...
  61. ``$<EQUAL:value1,value2>``
  62. ``1`` if ``value1`` and ``value2`` are numerically equal, else ``0``.
  63. ``$<IN_LIST:string,list>``
  64. ``1`` if ``string`` is member of the semicolon-separated ``list``, else ``0``.
  65. Uses case-sensitive comparisons.
  66. ``$<VERSION_LESS:v1,v2>``
  67. ``1`` if ``v1`` is a version less than ``v2``, else ``0``.
  68. ``$<VERSION_GREATER:v1,v2>``
  69. ``1`` if ``v1`` is a version greater than ``v2``, else ``0``.
  70. ``$<VERSION_EQUAL:v1,v2>``
  71. ``1`` if ``v1`` is the same version as ``v2``, else ``0``.
  72. ``$<VERSION_LESS_EQUAL:v1,v2>``
  73. ``1`` if ``v1`` is a version less than or equal to ``v2``, else ``0``.
  74. ``$<VERSION_GREATER_EQUAL:v1,v2>``
  75. ``1`` if ``v1`` is a version greater than or equal to ``v2``, else ``0``.
  76. Variable Queries
  77. ----------------
  78. ``$<TARGET_EXISTS:target>``
  79. ``1`` if ``target`` exists, else ``0``.
  80. ``$<CONFIG:cfgs>``
  81. ``1`` if config is any one of the entries in ``cfgs``, else ``0``. This is a
  82. case-insensitive comparison. The mapping in
  83. :prop_tgt:`MAP_IMPORTED_CONFIG_<CONFIG>` is also considered by this
  84. expression when it is evaluated on a property on an :prop_tgt:`IMPORTED`
  85. target.
  86. ``$<PLATFORM_ID:platform_ids>``
  87. where ``platform_ids`` is a comma-separated list.
  88. ``1`` if the CMake's platform id matches any one of the entries in
  89. ``platform_ids``, otherwise ``0``.
  90. See also the :variable:`CMAKE_SYSTEM_NAME` variable.
  91. ``$<C_COMPILER_ID:compiler_ids>``
  92. where ``compiler_ids`` is a comma-separated list.
  93. ``1`` if the CMake's compiler id of the C compiler matches any one
  94. of the entries in ``compiler_ids``, otherwise ``0``.
  95. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  96. ``$<CXX_COMPILER_ID:compiler_ids>``
  97. where ``compiler_ids`` is a comma-separated list.
  98. ``1`` if the CMake's compiler id of the CXX compiler matches any one
  99. of the entries in ``compiler_ids``, otherwise ``0``.
  100. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  101. ``$<CUDA_COMPILER_ID:compiler_ids>``
  102. where ``compiler_ids`` is a comma-separated list.
  103. ``1`` if the CMake's compiler id of the CUDA compiler matches any one
  104. of the entries in ``compiler_ids``, otherwise ``0``.
  105. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  106. ``$<OBJC_COMPILER_ID:compiler_ids>``
  107. where ``compiler_ids`` is a comma-separated list.
  108. ``1`` if the CMake's compiler id of the Objective-C compiler matches any one
  109. of the entries in ``compiler_ids``, otherwise ``0``.
  110. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  111. ``$<OBJCXX_COMPILER_ID:compiler_ids>``
  112. where ``compiler_ids`` is a comma-separated list.
  113. ``1`` if the CMake's compiler id of the Objective-C++ compiler matches any one
  114. of the entries in ``compiler_ids``, otherwise ``0``.
  115. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  116. ``$<Fortran_COMPILER_ID:compiler_ids>``
  117. where ``compiler_ids`` is a comma-separated list.
  118. ``1`` if the CMake's compiler id of the Fortran compiler matches any one
  119. of the entries in ``compiler_ids``, otherwise ``0``.
  120. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  121. ``$<C_COMPILER_VERSION:version>``
  122. ``1`` if the version of the C compiler matches ``version``, otherwise ``0``.
  123. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  124. ``$<CXX_COMPILER_VERSION:version>``
  125. ``1`` if the version of the CXX compiler matches ``version``, otherwise ``0``.
  126. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  127. ``$<CUDA_COMPILER_VERSION:version>``
  128. ``1`` if the version of the CXX compiler matches ``version``, otherwise ``0``.
  129. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  130. ``$<OBJC_COMPILER_VERSION:version>``
  131. ``1`` if the version of the OBJC compiler matches ``version``, otherwise ``0``.
  132. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  133. ``$<OBJCXX_COMPILER_VERSION:version>``
  134. ``1`` if the version of the OBJCXX compiler matches ``version``, otherwise ``0``.
  135. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  136. ``$<Fortran_COMPILER_VERSION:version>``
  137. ``1`` if the version of the Fortran compiler matches ``version``, otherwise ``0``.
  138. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  139. ``$<TARGET_POLICY:policy>``
  140. ``1`` if the ``policy`` was NEW when the 'head' target was created,
  141. else ``0``. If the ``policy`` was not set, the warning message for the policy
  142. will be emitted. This generator expression only works for a subset of
  143. policies.
  144. ``$<COMPILE_FEATURES:features>``
  145. where ``features`` is a comma-spearated list.
  146. Evaluates to ``1`` if all of the ``features`` are available for the 'head'
  147. target, and ``0`` otherwise. If this expression is used while evaluating
  148. the link implementation of a target and if any dependency transitively
  149. increases the required :prop_tgt:`C_STANDARD` or :prop_tgt:`CXX_STANDARD`
  150. for the 'head' target, an error is reported. See the
  151. :manual:`cmake-compile-features(7)` manual for information on
  152. compile features and a list of supported compilers.
  153. .. _`Boolean COMPILE_LANGUAGE Generator Expression`:
  154. ``$<COMPILE_LANG_AND_ID:language,compiler_ids>``
  155. ``1`` when the language used for compilation unit matches ``language`` and
  156. the CMake's compiler id of the language compiler matches any one of the
  157. entries in ``compiler_ids``, otherwise ``0``. This expression is a short form
  158. for the combination of ``$<COMPILE_LANGUAGE:language>`` and
  159. ``$<LANG_COMPILER_ID:compiler_ids>``. This expression may be used to specify
  160. compile options, compile definitions, and include directories for source files of a
  161. particular language and compiler combination in a target. For example:
  162. .. code-block:: cmake
  163. add_executable(myapp main.cpp foo.c bar.cpp zot.cu)
  164. target_compile_definitions(myapp
  165. PRIVATE $<$<COMPILE_LANG_AND_ID:CXX,AppleClang,Clang>:COMPILING_CXX_WITH_CLANG>
  166. $<$<COMPILE_LANG_AND_ID:CXX,Intel>:COMPILING_CXX_WITH_INTEL>
  167. $<$<COMPILE_LANG_AND_ID:C,Clang>:COMPILING_C_WITH_CLANG>
  168. )
  169. This specifies the use of different compile definitions based on both
  170. the compiler id and compilation language. This example will have a
  171. ``COMPILING_CXX_WITH_CLANG`` compile definition when Clang is the CXX
  172. compiler, and ``COMPILING_CXX_WITH_INTEL`` when Intel is the CXX compiler.
  173. Likewise when the C compiler is Clang it will only see the ``COMPILING_C_WITH_CLANG``
  174. definition.
  175. Without the ``COMPILE_LANG_AND_ID`` generator expression the same logic
  176. would be expressed as:
  177. .. code-block:: cmake
  178. target_compile_definitions(myapp
  179. PRIVATE $<$<AND:$<COMPILE_LANGUAGE:CXX>,$<CXX_COMPILER_ID:AppleClang,Clang>>:COMPILING_CXX_WITH_CLANG>
  180. $<$<AND:$<COMPILE_LANGUAGE:CXX>,$<CXX_COMPILER_ID:Intel>>:COMPILING_CXX_WITH_INTEL>
  181. $<$<AND:$<COMPILE_LANGUAGE:C>,$<C_COMPILER_ID:Clang>>:COMPILING_C_WITH_CLANG>
  182. )
  183. ``$<COMPILE_LANGUAGE:languages>``
  184. ``1`` when the language used for compilation unit matches any of the entries
  185. in ``languages``, otherwise ``0``. This expression may be used to specify
  186. compile options, compile definitions, and include directories for source files of a
  187. particular language in a target. For example:
  188. .. code-block:: cmake
  189. add_executable(myapp main.cpp foo.c bar.cpp zot.cu)
  190. target_compile_options(myapp
  191. PRIVATE $<$<COMPILE_LANGUAGE:CXX>:-fno-exceptions>
  192. )
  193. target_compile_definitions(myapp
  194. PRIVATE $<$<COMPILE_LANGUAGE:CXX>:COMPILING_CXX>
  195. $<$<COMPILE_LANGUAGE:CUDA>:COMPILING_CUDA>
  196. )
  197. target_include_directories(myapp
  198. PRIVATE $<$<COMPILE_LANGUAGE:CXX,CUDA>:/opt/foo/headers>
  199. )
  200. This specifies the use of the ``-fno-exceptions`` compile option,
  201. ``COMPILING_CXX`` compile definition, and ``cxx_headers`` include
  202. directory for C++ only (compiler id checks elided). It also specifies
  203. a ``COMPILING_CUDA`` compile definition for CUDA.
  204. Note that with :ref:`Visual Studio Generators` and :generator:`Xcode` there
  205. is no way to represent target-wide compile definitions or include directories
  206. separately for ``C`` and ``CXX`` languages.
  207. Also, with :ref:`Visual Studio Generators` there is no way to represent
  208. target-wide flags separately for ``C`` and ``CXX`` languages. Under these
  209. generators, expressions for both C and C++ sources will be evaluated
  210. using ``CXX`` if there are any C++ sources and otherwise using ``C``.
  211. A workaround is to create separate libraries for each source file language
  212. instead:
  213. .. code-block:: cmake
  214. add_library(myapp_c foo.c)
  215. add_library(myapp_cxx bar.cpp)
  216. target_compile_options(myapp_cxx PUBLIC -fno-exceptions)
  217. add_executable(myapp main.cpp)
  218. target_link_libraries(myapp myapp_c myapp_cxx)
  219. .. _`Boolean LINK_LANGUAGE Generator Expression`:
  220. ``$<LINK_LANG_AND_ID:language,compiler_ids>``
  221. ``1`` when the language used for link step matches ``language`` and the
  222. CMake's compiler id of the language linker matches any one of the entries
  223. in ``compiler_ids``, otherwise ``0``. This expression is a short form for the
  224. combination of ``$<LINK_LANGUAGE:language>`` and
  225. ``$<LANG_COMPILER_ID:compiler_ids>``. This expression may be used to specify
  226. link libraries, link options, link directories and link dependencies of a
  227. particular language and linker combination in a target. For example:
  228. .. code-block:: cmake
  229. add_library(libC_Clang ...)
  230. add_library(libCXX_Clang ...)
  231. add_library(libC_Intel ...)
  232. add_library(libCXX_Intel ...)
  233. add_executable(myapp main.c)
  234. if (CXX_CONFIG)
  235. target_sources(myapp PRIVATE file.cxx)
  236. endif()
  237. target_link_libraries(myapp
  238. PRIVATE $<$<LINK_LANG_AND_ID:CXX,Clang,AppleClang>:libCXX_Clang>
  239. $<$<LINK_LANG_AND_ID:C,Clang,AppleClang>:libC_Clang>
  240. $<$<LINK_LANG_AND_ID:CXX,Intel>:libCXX_Intel>
  241. $<$<LINK_LANG_AND_ID:C,Intel>:libC_Intel>)
  242. This specifies the use of different link libraries based on both the
  243. compiler id and link language. This example will have target ``libCXX_Clang``
  244. as link dependency when ``Clang`` or ``AppleClang`` is the ``CXX``
  245. linker, and ``libCXX_Intel`` when ``Intel`` is the ``CXX`` linker.
  246. Likewise when the ``C`` linker is ``Clang`` or ``AppleClang``, target
  247. ``libC_Clang`` will be added as link dependency and ``libC_Intel`` when
  248. ``Intel`` is the ``C`` linker.
  249. See :ref:`the note related to
  250. <Constraints LINK_LANGUAGE Generator Expression>`
  251. ``$<LINK_LANGUAGE:language>`` for constraints about the usage of this
  252. generator expression.
  253. ``$<LINK_LANGUAGE:languages>``
  254. ``1`` when the language used for link step matches any of the entries
  255. in ``languages``, otherwise ``0``. This expression may be used to specify
  256. link libraries, link options, link directories and link dependencies of a
  257. particular language in a target. For example:
  258. .. code-block:: cmake
  259. add_library(api_C ...)
  260. add_library(api_CXX ...)
  261. add_library(api INTERFACE)
  262. target_link_options(api INTERFACE $<$<LINK_LANGUAGE:C>:-opt_c>
  263. $<$<LINK_LANGUAGE:CXX>:-opt_cxx>)
  264. target_link_libraries(api INTERFACE $<$<LINK_LANGUAGE:C>:api_C>
  265. $<$<LINK_LANGUAGE:CXX>:api_CXX>)
  266. add_executable(myapp1 main.c)
  267. target_link_options(myapp1 PRIVATE api)
  268. add_executable(myapp2 main.cpp)
  269. target_link_options(myapp2 PRIVATE api)
  270. This specifies to use the ``api`` target for linking targets ``myapp1`` and
  271. ``myapp2``. In practice, ``myapp1`` will link with target ``api_C`` and
  272. option ``-opt_c`` because it will use ``C`` as link language. And ``myapp2``
  273. will link with ``api_CXX`` and option ``-opt_cxx`` because ``CXX`` will be
  274. the link language.
  275. .. _`Constraints LINK_LANGUAGE Generator Expression`:
  276. .. note::
  277. To determine the link language of a target, it is required to collect,
  278. transitively, all the targets which will be linked to it. So, for link
  279. libraries properties, a double evaluation will be done. During the first
  280. evaluation, ``$<LINK_LANGUAGE:..>`` expressions will always return ``0``.
  281. The link language computed after this first pass will be used to do the
  282. second pass. To avoid inconsistency, it is required that the second pass
  283. do not change the link language. Moreover, to avoid unexpected
  284. side-effects, it is required to specify complete entities as part of the
  285. ``$<LINK_LANGUAGE:..>`` expression. For example:
  286. .. code-block:: cmake
  287. add_library(lib STATIC file.cxx)
  288. add_library(libother STATIC file.c)
  289. # bad usage
  290. add_executable(myapp1 main.c)
  291. target_link_libraries(myapp1 PRIVATE lib$<$<LINK_LANGUAGE:C>:other>)
  292. # correct usage
  293. add_executable(myapp2 main.c)
  294. target_link_libraries(myapp2 PRIVATE $<$<LINK_LANGUAGE:C>:libother>)
  295. In this example, for ``myapp1``, the first pass will, unexpectedly,
  296. determine that the link language is ``CXX`` because the evaluation of the
  297. generator expression will be an empty string so ``myapp1`` will depends on
  298. target ``lib`` which is ``C++``. On the contrary, for ``myapp2``, the first
  299. evaluation will give ``C`` as link language, so the second pass will
  300. correctly add target ``libother`` as link dependency.
  301. ``$<DEVICE_LINK:list>``
  302. Returns the list if it is the device link step, an empty list otherwise.
  303. The device link step is controlled by :prop_tgt:`CUDA_SEPARABLE_COMPILATION`
  304. and :prop_tgt:`CUDA_RESOLVE_DEVICE_SYMBOLS` properties and
  305. policy :policy:`CMP0105`. This expression can only be used to specify link
  306. options.
  307. ``$<HOST_LINK:list>``
  308. Returns the list if it is the normal link step, an empty list otherwise.
  309. This expression is mainly useful when a device link step is also involved
  310. (see ``$<DEVICE_LINK:list>`` generator expression). This expression can only
  311. be used to specify link options.
  312. String-Valued Generator Expressions
  313. ===================================
  314. These expressions expand to some string.
  315. For example,
  316. .. code-block:: cmake
  317. include_directories(/usr/include/$<CXX_COMPILER_ID>/)
  318. expands to ``/usr/include/GNU/`` or ``/usr/include/Clang/`` etc, depending on
  319. the compiler identifier.
  320. String-valued expressions may also be combined with other expressions.
  321. Here an example for a string-valued expression within a boolean expressions
  322. within a conditional expression:
  323. .. code-block:: cmake
  324. $<$<VERSION_LESS:$<CXX_COMPILER_VERSION>,4.2.0>:OLD_COMPILER>
  325. expands to ``OLD_COMPILER`` if the
  326. :variable:`CMAKE_CXX_COMPILER_VERSION <CMAKE_<LANG>_COMPILER_VERSION>` is less
  327. than 4.2.0.
  328. And here two nested string-valued expressions:
  329. .. code-block:: cmake
  330. -I$<JOIN:$<TARGET_PROPERTY:INCLUDE_DIRECTORIES>, -I>
  331. generates a string of the entries in the :prop_tgt:`INCLUDE_DIRECTORIES` target
  332. property with each entry preceded by ``-I``.
  333. Expanding on the previous example, if one first wants to check if the
  334. ``INCLUDE_DIRECTORIES`` property is non-empty, then it is advisable to
  335. introduce a helper variable to keep the code readable:
  336. .. code-block:: cmake
  337. set(prop "$<TARGET_PROPERTY:INCLUDE_DIRECTORIES>") # helper variable
  338. $<$<BOOL:${prop}>:-I$<JOIN:${prop}, -I>>
  339. The following string-valued generator expressions are available:
  340. Escaped Characters
  341. ------------------
  342. String literals to escape the special meaning a character would otherwise have:
  343. ``$<ANGLE-R>``
  344. A literal ``>``. Used for example to compare strings that contain a ``>``.
  345. ``$<COMMA>``
  346. A literal ``,``. Used for example to compare strings which contain a ``,``.
  347. ``$<SEMICOLON>``
  348. A literal ``;``. Used to prevent list expansion on an argument with ``;``.
  349. .. _`Conditional Generator Expressions`:
  350. Conditional Expressions
  351. -----------------------
  352. Conditional generator expressions depend on a boolean condition
  353. that must be ``0`` or ``1``.
  354. ``$<condition:true_string>``
  355. Evaluates to ``true_string`` if ``condition`` is ``1``.
  356. Otherwise evaluates to the empty string.
  357. ``$<IF:condition,true_string,false_string>``
  358. Evaluates to ``true_string`` if ``condition`` is ``1``.
  359. Otherwise evaluates to ``false_string``.
  360. Typically, the ``condition`` is a :ref:`boolean generator expression
  361. <Boolean Generator Expressions>`. For instance,
  362. .. code-block:: cmake
  363. $<$<CONFIG:Debug>:DEBUG_MODE>
  364. expands to ``DEBUG_MODE`` when the ``Debug`` configuration is used, and
  365. otherwise expands to the empty string.
  366. .. _`String Transforming Generator Expressions`:
  367. String Transformations
  368. ----------------------
  369. ``$<JOIN:list,string>``
  370. Joins the list with the content of ``string``.
  371. ``$<REMOVE_DUPLICATES:list>``
  372. Removes duplicated items in the given ``list``.
  373. ``$<FILTER:list,INCLUDE|EXCLUDE,regex>``
  374. Includes or removes items from ``list`` that match the regular expression ``regex``.
  375. ``$<LOWER_CASE:string>``
  376. Content of ``string`` converted to lower case.
  377. ``$<UPPER_CASE:string>``
  378. Content of ``string`` converted to upper case.
  379. ``$<GENEX_EVAL:expr>``
  380. Content of ``expr`` evaluated as a generator expression in the current
  381. context. This enables consumption of generator expressions whose
  382. evaluation results itself in generator expressions.
  383. ``$<TARGET_GENEX_EVAL:tgt,expr>``
  384. Content of ``expr`` evaluated as a generator expression in the context of
  385. ``tgt`` target. This enables consumption of custom target properties that
  386. themselves contain generator expressions.
  387. Having the capability to evaluate generator expressions is very useful when
  388. you want to manage custom properties supporting generator expressions.
  389. For example:
  390. .. code-block:: cmake
  391. add_library(foo ...)
  392. set_property(TARGET foo PROPERTY
  393. CUSTOM_KEYS $<$<CONFIG:DEBUG>:FOO_EXTRA_THINGS>
  394. )
  395. add_custom_target(printFooKeys
  396. COMMAND ${CMAKE_COMMAND} -E echo $<TARGET_PROPERTY:foo,CUSTOM_KEYS>
  397. )
  398. This naive implementation of the ``printFooKeys`` custom command is wrong
  399. because ``CUSTOM_KEYS`` target property is not evaluated and the content
  400. is passed as is (i.e. ``$<$<CONFIG:DEBUG>:FOO_EXTRA_THINGS>``).
  401. To have the expected result (i.e. ``FOO_EXTRA_THINGS`` if config is
  402. ``Debug``), it is required to evaluate the output of
  403. ``$<TARGET_PROPERTY:foo,CUSTOM_KEYS>``:
  404. .. code-block:: cmake
  405. add_custom_target(printFooKeys
  406. COMMAND ${CMAKE_COMMAND} -E
  407. echo $<TARGET_GENEX_EVAL:foo,$<TARGET_PROPERTY:foo,CUSTOM_KEYS>>
  408. )
  409. Variable Queries
  410. ----------------
  411. ``$<CONFIG>``
  412. Configuration name.
  413. ``$<CONFIGURATION>``
  414. Configuration name. Deprecated since CMake 3.0. Use ``CONFIG`` instead.
  415. ``$<PLATFORM_ID>``
  416. The current system's CMake platform id.
  417. See also the :variable:`CMAKE_SYSTEM_NAME` variable.
  418. ``$<C_COMPILER_ID>``
  419. The CMake's compiler id of the C compiler used.
  420. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  421. ``$<CXX_COMPILER_ID>``
  422. The CMake's compiler id of the CXX compiler used.
  423. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  424. ``$<CUDA_COMPILER_ID>``
  425. The CMake's compiler id of the CUDA compiler used.
  426. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  427. ``$<OBJC_COMPILER_ID>``
  428. The CMake's compiler id of the OBJC compiler used.
  429. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  430. ``$<OBJCXX_COMPILER_ID>``
  431. The CMake's compiler id of the OBJCXX compiler used.
  432. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  433. ``$<Fortran_COMPILER_ID>``
  434. The CMake's compiler id of the Fortran compiler used.
  435. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  436. ``$<C_COMPILER_VERSION>``
  437. The version of the C compiler used.
  438. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  439. ``$<CXX_COMPILER_VERSION>``
  440. The version of the CXX compiler used.
  441. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  442. ``$<CUDA_COMPILER_VERSION>``
  443. The version of the CUDA compiler used.
  444. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  445. ``$<OBJC_COMPILER_VERSION>``
  446. The version of the OBJC compiler used.
  447. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  448. ``$<OBJCXX_COMPILER_VERSION>``
  449. The version of the OBJCXX compiler used.
  450. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  451. ``$<Fortran_COMPILER_VERSION>``
  452. The version of the Fortran compiler used.
  453. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  454. ``$<COMPILE_LANGUAGE>``
  455. The compile language of source files when evaluating compile options.
  456. See :ref:`the related boolean expression
  457. <Boolean COMPILE_LANGUAGE Generator Expression>`
  458. ``$<COMPILE_LANGUAGE:language>``
  459. for notes about the portability of this generator expression.
  460. ``$<LINK_LANGUAGE>``
  461. The link language of target when evaluating link options.
  462. See :ref:`the related boolean expression
  463. <Boolean LINK_LANGUAGE Generator Expression>` ``$<LINK_LANGUAGE:language>``
  464. for notes about the portability of this generator expression.
  465. .. note::
  466. This generator expression is not supported by the link libraries
  467. properties to avoid side-effects due to the double evaluation of
  468. these properties.
  469. Target-Dependent Queries
  470. ------------------------
  471. These queries refer to a target ``tgt``. This can be any runtime artifact,
  472. namely:
  473. * an executable target created by :command:`add_executable`
  474. * a shared library target (``.so``, ``.dll`` but not their ``.lib`` import library)
  475. created by :command:`add_library`
  476. * a static library target created by :command:`add_library`
  477. In the following, "the ``tgt`` filename" means the name of the ``tgt``
  478. binary file. This has to be distinguished from "the target name",
  479. which is just the string ``tgt``.
  480. ``$<TARGET_NAME_IF_EXISTS:tgt>``
  481. The target name ``tgt`` if the target exists, an empty string otherwise.
  482. ``$<TARGET_FILE:tgt>``
  483. Full path to the ``tgt`` binary file.
  484. ``$<TARGET_FILE_BASE_NAME:tgt>``
  485. Base name of ``tgt``, i.e. ``$<TARGET_FILE_NAME:tgt>`` without prefix and
  486. suffix.
  487. For example, if the ``tgt`` filename is ``libbase.so``, the base name is ``base``.
  488. See also the :prop_tgt:`OUTPUT_NAME`, :prop_tgt:`ARCHIVE_OUTPUT_NAME`,
  489. :prop_tgt:`LIBRARY_OUTPUT_NAME` and :prop_tgt:`RUNTIME_OUTPUT_NAME`
  490. target properties and their configuration specific variants
  491. :prop_tgt:`OUTPUT_NAME_<CONFIG>`, :prop_tgt:`ARCHIVE_OUTPUT_NAME_<CONFIG>`,
  492. :prop_tgt:`LIBRARY_OUTPUT_NAME_<CONFIG>` and
  493. :prop_tgt:`RUNTIME_OUTPUT_NAME_<CONFIG>`.
  494. The :prop_tgt:`<CONFIG>_POSTFIX` and :prop_tgt:`DEBUG_POSTFIX` target
  495. properties can also be considered.
  496. Note that ``tgt`` is not added as a dependency of the target this
  497. expression is evaluated on.
  498. ``$<TARGET_FILE_PREFIX:tgt>``
  499. Prefix of the ``tgt`` filename (such as ``lib``).
  500. See also the :prop_tgt:`PREFIX` target property.
  501. Note that ``tgt`` is not added as a dependency of the target this
  502. expression is evaluated on.
  503. ``$<TARGET_FILE_SUFFIX:tgt>``
  504. Suffix of the ``tgt`` filename (extension such as ``.so`` or ``.exe``).
  505. See also the :prop_tgt:`SUFFIX` target property.
  506. Note that ``tgt`` is not added as a dependency of the target this
  507. expression is evaluated on.
  508. ``$<TARGET_FILE_NAME:tgt>``
  509. The ``tgt`` filename.
  510. ``$<TARGET_FILE_DIR:tgt>``
  511. Directory of the ``tgt`` binary file.
  512. ``$<TARGET_LINKER_FILE:tgt>``
  513. File used when linking to the ``tgt`` target. This will usually
  514. be the library that ``tgt`` represents (``.a``, ``.lib``, ``.so``),
  515. but for a shared library on DLL platforms, it would be the ``.lib``
  516. import library associated with the DLL.
  517. ``$<TARGET_LINKER_FILE_BASE_NAME:tgt>``
  518. Base name of file used to link the target ``tgt``, i.e.
  519. ``$<TARGET_LINKER_FILE_NAME:tgt>`` without prefix and suffix. For example,
  520. if target file name is ``libbase.a``, the base name is ``base``.
  521. See also the :prop_tgt:`OUTPUT_NAME`, :prop_tgt:`ARCHIVE_OUTPUT_NAME`,
  522. and :prop_tgt:`LIBRARY_OUTPUT_NAME` target properties and their configuration
  523. specific variants :prop_tgt:`OUTPUT_NAME_<CONFIG>`,
  524. :prop_tgt:`ARCHIVE_OUTPUT_NAME_<CONFIG>` and
  525. :prop_tgt:`LIBRARY_OUTPUT_NAME_<CONFIG>`.
  526. The :prop_tgt:`<CONFIG>_POSTFIX` and :prop_tgt:`DEBUG_POSTFIX` target
  527. properties can also be considered.
  528. Note that ``tgt`` is not added as a dependency of the target this
  529. expression is evaluated on.
  530. ``$<TARGET_LINKER_FILE_PREFIX:tgt>``
  531. Prefix of file used to link target ``tgt``.
  532. See also the :prop_tgt:`PREFIX` and :prop_tgt:`IMPORT_PREFIX` target
  533. properties.
  534. Note that ``tgt`` is not added as a dependency of the target this
  535. expression is evaluated on.
  536. ``$<TARGET_LINKER_FILE_SUFFIX:tgt>``
  537. Suffix of file used to link where ``tgt`` is the name of a target.
  538. The suffix corresponds to the file extension (such as ".so" or ".lib").
  539. See also the :prop_tgt:`SUFFIX` and :prop_tgt:`IMPORT_SUFFIX` target
  540. properties.
  541. Note that ``tgt`` is not added as a dependency of the target this
  542. expression is evaluated on.
  543. ``$<TARGET_LINKER_FILE_NAME:tgt>``
  544. Name of file used to link target ``tgt``.
  545. ``$<TARGET_LINKER_FILE_DIR:tgt>``
  546. Directory of file used to link target ``tgt``.
  547. ``$<TARGET_SONAME_FILE:tgt>``
  548. File with soname (``.so.3``) where ``tgt`` is the name of a target.
  549. ``$<TARGET_SONAME_FILE_NAME:tgt>``
  550. Name of file with soname (``.so.3``).
  551. ``$<TARGET_SONAME_FILE_DIR:tgt>``
  552. Directory of with soname (``.so.3``).
  553. ``$<TARGET_PDB_FILE:tgt>``
  554. Full path to the linker generated program database file (.pdb)
  555. where ``tgt`` is the name of a target.
  556. See also the :prop_tgt:`PDB_NAME` and :prop_tgt:`PDB_OUTPUT_DIRECTORY`
  557. target properties and their configuration specific variants
  558. :prop_tgt:`PDB_NAME_<CONFIG>` and :prop_tgt:`PDB_OUTPUT_DIRECTORY_<CONFIG>`.
  559. ``$<TARGET_PDB_FILE_BASE_NAME:tgt>``
  560. Base name of the linker generated program database file (.pdb)
  561. where ``tgt`` is the name of a target.
  562. The base name corresponds to the target PDB file name (see
  563. ``$<TARGET_PDB_FILE_NAME:tgt>``) without prefix and suffix. For example,
  564. if target file name is ``base.pdb``, the base name is ``base``.
  565. See also the :prop_tgt:`PDB_NAME` target property and its configuration
  566. specific variant :prop_tgt:`PDB_NAME_<CONFIG>`.
  567. The :prop_tgt:`<CONFIG>_POSTFIX` and :prop_tgt:`DEBUG_POSTFIX` target
  568. properties can also be considered.
  569. Note that ``tgt`` is not added as a dependency of the target this
  570. expression is evaluated on.
  571. ``$<TARGET_PDB_FILE_NAME:tgt>``
  572. Name of the linker generated program database file (.pdb).
  573. ``$<TARGET_PDB_FILE_DIR:tgt>``
  574. Directory of the linker generated program database file (.pdb).
  575. ``$<TARGET_BUNDLE_DIR:tgt>``
  576. Full path to the bundle directory (``my.app``, ``my.framework``, or
  577. ``my.bundle``) where ``tgt`` is the name of a target.
  578. ``$<TARGET_BUNDLE_CONTENT_DIR:tgt>``
  579. Full path to the bundle content directory where ``tgt`` is the name of a
  580. target. For the macOS SDK it leads to ``my.app/Contents``, ``my.framework``,
  581. or ``my.bundle/Contents``. For all other SDKs (e.g. iOS) it leads to
  582. ``my.app``, ``my.framework``, or ``my.bundle`` due to the flat bundle
  583. structure.
  584. ``$<TARGET_PROPERTY:tgt,prop>``
  585. Value of the property ``prop`` on the target ``tgt``.
  586. Note that ``tgt`` is not added as a dependency of the target this
  587. expression is evaluated on.
  588. ``$<TARGET_PROPERTY:prop>``
  589. Value of the property ``prop`` on the target for which the expression
  590. is being evaluated. Note that for generator expressions in
  591. :ref:`Target Usage Requirements` this is the consuming target rather
  592. than the target specifying the requirement.
  593. ``$<INSTALL_PREFIX>``
  594. Content of the install prefix when the target is exported via
  595. :command:`install(EXPORT)`, or when evaluated in
  596. :prop_tgt:`INSTALL_NAME_DIR`, and empty otherwise.
  597. Output-Related Expressions
  598. --------------------------
  599. ``$<TARGET_NAME:...>``
  600. Marks ``...`` as being the name of a target. This is required if exporting
  601. targets to multiple dependent export sets. The ``...`` must be a literal
  602. name of a target- it may not contain generator expressions.
  603. ``$<LINK_ONLY:...>``
  604. Content of ``...`` except when evaluated in a link interface while
  605. propagating :ref:`Target Usage Requirements`, in which case it is the
  606. empty string.
  607. Intended for use only in an :prop_tgt:`INTERFACE_LINK_LIBRARIES` target
  608. property, perhaps via the :command:`target_link_libraries` command,
  609. to specify private link dependencies without other usage requirements.
  610. ``$<INSTALL_INTERFACE:...>``
  611. Content of ``...`` when the property is exported using :command:`install(EXPORT)`,
  612. and empty otherwise.
  613. ``$<BUILD_INTERFACE:...>``
  614. Content of ``...`` when the property is exported using :command:`export`, or
  615. when the target is used by another target in the same buildsystem. Expands to
  616. the empty string otherwise.
  617. ``$<MAKE_C_IDENTIFIER:...>``
  618. Content of ``...`` converted to a C identifier. The conversion follows the
  619. same behavior as :command:`string(MAKE_C_IDENTIFIER)`.
  620. ``$<TARGET_OBJECTS:objLib>``
  621. List of objects resulting from build of ``objLib``.
  622. ``$<SHELL_PATH:...>``
  623. Content of ``...`` converted to shell path style. For example, slashes are
  624. converted to backslashes in Windows shells and drive letters are converted
  625. to posix paths in MSYS shells. The ``...`` must be an absolute path.
  626. The ``...`` may be a :ref:`semicolon-separated list <CMake Language Lists>`
  627. of paths, in which case each path is converted individually and a result
  628. list is generated using the shell path separator (``:`` on POSIX and
  629. ``;`` on Windows). Be sure to enclose the argument containing this genex
  630. in double quotes in CMake source code so that ``;`` does not split arguments.
  631. Debugging
  632. =========
  633. Since generator expressions are evaluated during generation of the buildsystem,
  634. and not during processing of ``CMakeLists.txt`` files, it is not possible to
  635. inspect their result with the :command:`message()` command.
  636. One possible way to generate debug messages is to add a custom target,
  637. .. code-block:: cmake
  638. add_custom_target(genexdebug COMMAND ${CMAKE_COMMAND} -E echo "$<...>")
  639. The shell command ``make genexdebug`` (invoked after execution of ``cmake``)
  640. would then print the result of ``$<...>``.
  641. Another way is to write debug messages to a file:
  642. .. code-block:: cmake
  643. file(GENERATE OUTPUT filename CONTENT "$<...>")