cmake-generator-expressions.7.rst 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466
  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`` according to the rules of the
  36. :command:`if()` command. Evaluates to ``0`` if any of the 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 comma-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:cfg>``
  81. ``1`` if config is ``cfg``, else ``0``. This is a case-insensitive comparison.
  82. The mapping in :prop_tgt:`MAP_IMPORTED_CONFIG_<CONFIG>` is also considered by
  83. this expression when it is evaluated on a property on an :prop_tgt:`IMPORTED`
  84. target.
  85. ``$<PLATFORM_ID:platform_id>``
  86. ``1`` if the CMake-id of the platform matches ``platform_id``
  87. otherwise ``0``.
  88. See also the :variable:`CMAKE_SYSTEM_NAME` variable.
  89. ``$<C_COMPILER_ID:compiler_id>``
  90. ``1`` if the CMake-id of the C compiler matches ``compiler_id``,
  91. otherwise ``0``.
  92. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  93. ``$<CXX_COMPILER_ID:compiler_id>``
  94. ``1`` if the CMake-id of the CXX compiler matches ``compiler_id``,
  95. otherwise ``0``.
  96. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  97. ``$<C_COMPILER_VERSION:version>``
  98. ``1`` if the version of the C compiler matches ``version``, otherwise ``0``.
  99. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  100. ``$<CXX_COMPILER_VERSION:version>``
  101. ``1`` if the version of the CXX compiler matches ``version``, otherwise ``0``.
  102. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  103. ``$<TARGET_POLICY:policy>``
  104. ``1`` if the ``policy`` was NEW when the 'head' target was created,
  105. else ``0``. If the ``policy`` was not set, the warning message for the policy
  106. will be emitted. This generator expression only works for a subset of
  107. policies.
  108. ``$<COMPILE_FEATURES:features>``
  109. where ``features`` is a comma-spearated list.
  110. Evaluates to ``1`` if all of the ``features`` are available for the 'head'
  111. target, and ``0`` otherwise. If this expression is used while evaluating
  112. the link implementation of a target and if any dependency transitively
  113. increases the required :prop_tgt:`C_STANDARD` or :prop_tgt:`CXX_STANDARD`
  114. for the 'head' target, an error is reported. See the
  115. :manual:`cmake-compile-features(7)` manual for information on
  116. compile features and a list of supported compilers.
  117. .. _`Boolean COMPILE_LANGUAGE Generator Expression`:
  118. ``$<COMPILE_LANGUAGE:language>``
  119. ``1`` when the language used for compilation unit matches ``language``,
  120. otherwise ``0``. This expression may be used to specify compile options,
  121. compile definitions, and include directories for source files of a
  122. particular language in a target. For example:
  123. .. code-block:: cmake
  124. add_executable(myapp main.cpp foo.c bar.cpp zot.cu)
  125. target_compile_options(myapp
  126. PRIVATE $<$<COMPILE_LANGUAGE:CXX>:-fno-exceptions>
  127. )
  128. target_compile_definitions(myapp
  129. PRIVATE $<$<COMPILE_LANGUAGE:CXX>:COMPILING_CXX>
  130. $<$<COMPILE_LANGUAGE:CUDA>:COMPILING_CUDA>
  131. )
  132. target_include_directories(myapp
  133. PRIVATE $<$<COMPILE_LANGUAGE:CXX>:/opt/foo/cxx_headers>
  134. )
  135. This specifies the use of the ``-fno-exceptions`` compile option,
  136. ``COMPILING_CXX`` compile definition, and ``cxx_headers`` include
  137. directory for C++ only (compiler id checks elided). It also specifies
  138. a ``COMPILING_CUDA`` compile definition for CUDA.
  139. Note that with :ref:`Visual Studio Generators` and :generator:`Xcode` there
  140. is no way to represent target-wide compile definitions or include directories
  141. separately for ``C`` and ``CXX`` languages.
  142. Also, with :ref:`Visual Studio Generators` there is no way to represent
  143. target-wide flags separately for ``C`` and ``CXX`` languages. Under these
  144. generators, expressions for both C and C++ sources will be evaluated
  145. using ``CXX`` if there are any C++ sources and otherwise using ``C``.
  146. A workaround is to create separate libraries for each source file language
  147. instead:
  148. .. code-block:: cmake
  149. add_library(myapp_c foo.c)
  150. add_library(myapp_cxx bar.cpp)
  151. target_compile_options(myapp_cxx PUBLIC -fno-exceptions)
  152. add_executable(myapp main.cpp)
  153. target_link_libraries(myapp myapp_c myapp_cxx)
  154. String-Valued Generator Expressions
  155. ===================================
  156. These expressions expand to some string.
  157. For example,
  158. .. code-block:: cmake
  159. include_directories(/usr/include/$<CXX_COMPILER_ID>/)
  160. expands to ``/usr/include/GNU/`` or ``/usr/include/Clang/`` etc, depending on
  161. the compiler identifier.
  162. String-valued expressions may also be combined with other expressions.
  163. Here an example for a string-valued expression within a boolean expressions
  164. within a conditional expression:
  165. .. code-block:: cmake
  166. $<$<VERSION_LESS:$<CXX_COMPILER_VERSION>,4.2.0>:OLD_COMPILER>
  167. expands to ``OLD_COMPILER`` if the
  168. :variable:`CMAKE_CXX_COMPILER_VERSION <CMAKE_<LANG>_COMPILER_VERSION>` is less
  169. than 4.2.0.
  170. And here two nested string-valued expressions:
  171. .. code-block:: cmake
  172. -I$<JOIN:$<TARGET_PROPERTY:INCLUDE_DIRECTORIES>, -I>
  173. generates a string of the entries in the :prop_tgt:`INCLUDE_DIRECTORIES` target
  174. property with each entry preceded by ``-I``.
  175. Expanding on the previous example, if one first wants to check if the
  176. ``INCLUDE_DIRECTORIES`` property is non-empty, then it is advisable to
  177. introduce a helper variable to keep the code readable:
  178. .. code-block:: cmake
  179. set(prop "$<TARGET_PROPERTY:INCLUDE_DIRECTORIES>") # helper variable
  180. $<$<BOOL:${prop}>:-I$<JOIN:${prop}, -I>>
  181. The following string-valued generator expressions are available:
  182. Escaped Characters
  183. ------------------
  184. String literals to escape the special meaning a character would otherwise have:
  185. ``$<ANGLE-R>``
  186. A literal ``>``. Used for example to compare strings that contain a ``>``.
  187. ``$<COMMA>``
  188. A literal ``,``. Used for example to compare strings which contain a ``,``.
  189. ``$<SEMICOLON>``
  190. A literal ``;``. Used to prevent list expansion on an argument with ``;``.
  191. .. _`Conditional Generator Expressions`:
  192. Conditional Expressions
  193. -----------------------
  194. Conditional generator expressions depend on a boolean condition
  195. that must be ``0`` or ``1``.
  196. ``$<condition:true_string>``
  197. Evaluates to ``true_string`` if ``condition`` is ``1``.
  198. Otherwise evaluates to the empty string.
  199. ``$<IF:condition,true_string,false_string>``
  200. Evaluates to ``true_string`` if ``condition`` is ``1``.
  201. Otherwise evaluates to ``false_string``.
  202. Typically, the ``condition`` is a :ref:`boolean generator expression
  203. <Boolean Generator Expressions>`. For instance,
  204. .. code-block:: cmake
  205. $<$<CONFIG:Debug>:DEBUG_MODE>
  206. expands to ``DEBUG_MODE`` when the ``Debug`` configuration is used, and
  207. otherwise expands to the empty string.
  208. .. _`String Transforming Generator Expressions`:
  209. String Transformations
  210. ----------------------
  211. ``$<JOIN:list,string>``
  212. Joins the list with the content of ``string``.
  213. ``$<LOWER_CASE:string>``
  214. Content of ``string`` converted to lower case.
  215. ``$<UPPER_CASE:string>``
  216. Content of ``string`` converted to upper case.
  217. ``$<GENEX_EVAL:expr>``
  218. Content of ``expr`` evaluated as a generator expression in the current
  219. context. This enables consumption of generator expressions whose
  220. evaluation results itself in generator expressions.
  221. ``$<TARGET_GENEX_EVAL:tgt,expr>``
  222. Content of ``expr`` evaluated as a generator expression in the context of
  223. ``tgt`` target. This enables consumption of custom target properties that
  224. themselves contain generator expressions.
  225. Having the capability to evaluate generator expressions is very useful when
  226. you want to manage custom properties supporting generator expressions.
  227. For example:
  228. .. code-block:: cmake
  229. add_library(foo ...)
  230. set_property(TARGET foo PROPERTY
  231. CUSTOM_KEYS $<$<CONFIG:DEBUG>:FOO_EXTRA_THINGS>
  232. )
  233. add_custom_target(printFooKeys
  234. COMMAND ${CMAKE_COMMAND} -E echo $<TARGET_PROPERTY:foo,CUSTOM_KEYS>
  235. )
  236. This naive implementation of the ``printFooKeys`` custom command is wrong
  237. because ``CUSTOM_KEYS`` target property is not evaluated and the content
  238. is passed as is (i.e. ``$<$<CONFIG:DEBUG>:FOO_EXTRA_THINGS>``).
  239. To have the expected result (i.e. ``FOO_EXTRA_THINGS`` if config is
  240. ``Debug``), it is required to evaluate the output of
  241. ``$<TARGET_PROPERTY:foo,CUSTOM_KEYS>``:
  242. .. code-block:: cmake
  243. add_custom_target(printFooKeys
  244. COMMAND ${CMAKE_COMMAND} -E
  245. echo $<TARGET_GENEX_EVAL:foo,$<TARGET_PROPERTY:foo,CUSTOM_KEYS>>
  246. )
  247. Variable Queries
  248. ----------------
  249. ``$<CONFIG>``
  250. Configuration name.
  251. ``$<CONFIGURATION>``
  252. Configuration name. Deprecated since CMake 3.0. Use ``CONFIG`` instead.
  253. ``$<PLATFORM_ID>``
  254. The CMake-id of the platform.
  255. See also the :variable:`CMAKE_SYSTEM_NAME` variable.
  256. ``$<C_COMPILER_ID>``
  257. The CMake-id of the C compiler used.
  258. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  259. ``$<CXX_COMPILER_ID>``
  260. The CMake-id of the CXX compiler used.
  261. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  262. ``$<C_COMPILER_VERSION>``
  263. The version of the C compiler used.
  264. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  265. ``$<CXX_COMPILER_VERSION>``
  266. The version of the CXX compiler used.
  267. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  268. ``$<COMPILE_LANGUAGE>``
  269. The compile language of source files when evaluating compile options.
  270. See :ref:`the related boolean expression
  271. <Boolean COMPILE_LANGUAGE Generator Expression>`
  272. ``$<COMPILE_LANGUAGE:language>``
  273. for notes about the portability of this generator expression.
  274. Target-Dependent Queries
  275. ------------------------
  276. ``$<TARGET_NAME_IF_EXISTS:tgt>``
  277. Expands to the ``tgt`` if the given target exists, an empty string
  278. otherwise.
  279. ``$<TARGET_FILE:tgt>``
  280. Full path to main file (.exe, .so.1.2, .a) where ``tgt`` is the name of a target.
  281. ``$<TARGET_FILE_NAME:tgt>``
  282. Name of main file (.exe, .so.1.2, .a).
  283. ``$<TARGET_FILE_DIR:tgt>``
  284. Directory of main file (.exe, .so.1.2, .a).
  285. ``$<TARGET_LINKER_FILE:tgt>``
  286. File used to link (.a, .lib, .so) where ``tgt`` is the name of a target.
  287. ``$<TARGET_LINKER_FILE_NAME:tgt>``
  288. Name of file used to link (.a, .lib, .so).
  289. ``$<TARGET_LINKER_FILE_DIR:tgt>``
  290. Directory of file used to link (.a, .lib, .so).
  291. ``$<TARGET_SONAME_FILE:tgt>``
  292. File with soname (.so.3) where ``tgt`` is the name of a target.
  293. ``$<TARGET_SONAME_FILE_NAME:tgt>``
  294. Name of file with soname (.so.3).
  295. ``$<TARGET_SONAME_FILE_DIR:tgt>``
  296. Directory of with soname (.so.3).
  297. ``$<TARGET_PDB_FILE:tgt>``
  298. Full path to the linker generated program database file (.pdb)
  299. where ``tgt`` is the name of a target.
  300. See also the :prop_tgt:`PDB_NAME` and :prop_tgt:`PDB_OUTPUT_DIRECTORY`
  301. target properties and their configuration specific variants
  302. :prop_tgt:`PDB_NAME_<CONFIG>` and :prop_tgt:`PDB_OUTPUT_DIRECTORY_<CONFIG>`.
  303. ``$<TARGET_PDB_FILE_NAME:tgt>``
  304. Name of the linker generated program database file (.pdb).
  305. ``$<TARGET_PDB_FILE_DIR:tgt>``
  306. Directory of the linker generated program database file (.pdb).
  307. ``$<TARGET_BUNDLE_DIR:tgt>``
  308. Full path to the bundle directory (``my.app``, ``my.framework``, or
  309. ``my.bundle``) where ``tgt`` is the name of a target.
  310. ``$<TARGET_BUNDLE_CONTENT_DIR:tgt>``
  311. Full path to the bundle content directory where ``tgt`` is the name of a
  312. target. For the macOS SDK it leads to ``my.app/Contents``, ``my.framework``,
  313. or ``my.bundle/Contents``. For all other SDKs (e.g. iOS) it leads to
  314. ``my.app``, ``my.framework``, or ``my.bundle`` due to the flat bundle
  315. structure.
  316. ``$<TARGET_PROPERTY:tgt,prop>``
  317. Value of the property ``prop`` on the target ``tgt``.
  318. Note that ``tgt`` is not added as a dependency of the target this
  319. expression is evaluated on.
  320. ``$<TARGET_PROPERTY:prop>``
  321. Value of the property ``prop`` on the target on which the generator
  322. expression is evaluated. Note that for generator expressions in
  323. :ref:`Target Usage Requirements` this is the value of the property
  324. on the consuming target rather than the target specifying the
  325. requirement.
  326. ``$<INSTALL_PREFIX>``
  327. Content of the install prefix when the target is exported via
  328. :command:`install(EXPORT)` and empty otherwise.
  329. Output-Related Expressions
  330. --------------------------
  331. ``$<TARGET_NAME:...>``
  332. Marks ``...`` as being the name of a target. This is required if exporting
  333. targets to multiple dependent export sets. The ``...`` must be a literal
  334. name of a target- it may not contain generator expressions.
  335. ``$<LINK_ONLY:...>``
  336. Content of ``...`` except when evaluated in a link interface while
  337. propagating :ref:`Target Usage Requirements`, in which case it is the
  338. empty string.
  339. Intended for use only in an :prop_tgt:`INTERFACE_LINK_LIBRARIES` target
  340. property, perhaps via the :command:`target_link_libraries` command,
  341. to specify private link dependencies without other usage requirements.
  342. ``$<INSTALL_INTERFACE:...>``
  343. Content of ``...`` when the property is exported using :command:`install(EXPORT)`,
  344. and empty otherwise.
  345. ``$<BUILD_INTERFACE:...>``
  346. Content of ``...`` when the property is exported using :command:`export`, or
  347. when the target is used by another target in the same buildsystem. Expands to
  348. the empty string otherwise.
  349. ``$<MAKE_C_IDENTIFIER:...>``
  350. Content of ``...`` converted to a C identifier. The conversion follows the
  351. same behavior as :command:`string(MAKE_C_IDENTIFIER)`.
  352. ``$<TARGET_OBJECTS:objLib>``
  353. List of objects resulting from build of ``objLib``. ``objLib`` must be an
  354. object of type ``OBJECT_LIBRARY``.
  355. ``$<SHELL_PATH:...>``
  356. Content of ``...`` converted to shell path style. For example, slashes are
  357. converted to backslashes in Windows shells and drive letters are converted
  358. to posix paths in MSYS shells. The ``...`` must be an absolute path.
  359. Debugging
  360. =========
  361. Since generator expressions are evaluated during generation of the buildsystem,
  362. and not during processing of ``CMakeLists.txt`` files, it is not possible to
  363. inspect their result with the :command:`message()` command.
  364. One possible way to generate debug messages is to add a custom target,
  365. .. code-block:: cmake
  366. add_custom_target(genexdebug COMMAND ${CMAKE_COMMAND} -E echo "$<...>")
  367. The shell command ``make genexdebug`` (invoked after execution of ``cmake``)
  368. would then print the result of ``$<...>``.
  369. Another way is to write debug messages to a file:
  370. .. code-block:: cmake
  371. file(GENERATE OUTPUT filename CONTENT "$<...>")