cmake-generator-expressions.7.rst 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629
  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 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: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_ids>``
  86. where ``platform_ids`` is a comma-separated list.
  87. ``1`` if the CMake's platform id matches any one of the entries in
  88. ``platform_ids``, otherwise ``0``.
  89. See also the :variable:`CMAKE_SYSTEM_NAME` variable.
  90. ``$<C_COMPILER_ID:compiler_ids>``
  91. where ``compiler_ids`` is a comma-separated list.
  92. ``1`` if the CMake's compiler id of the C compiler matches any one
  93. of the entries in ``compiler_ids``, otherwise ``0``.
  94. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  95. ``$<CXX_COMPILER_ID:compiler_ids>``
  96. where ``compiler_ids`` is a comma-separated list.
  97. ``1`` if the CMake's compiler id of the CXX compiler matches any one
  98. of the entries in ``compiler_ids``, otherwise ``0``.
  99. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  100. ``$<CUDA_COMPILER_ID:compiler_ids>``
  101. where ``compiler_ids`` is a comma-separated list.
  102. ``1`` if the CMake's compiler id of the CUDA compiler matches any one
  103. of the entries in ``compiler_ids``, otherwise ``0``.
  104. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  105. ``$<Fortran_COMPILER_ID:compiler_ids>``
  106. where ``compiler_ids`` is a comma-separated list.
  107. ``1`` if the CMake's compiler id of the Fortran compiler matches any one
  108. of the entries in ``compiler_ids``, otherwise ``0``.
  109. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  110. ``$<C_COMPILER_VERSION:version>``
  111. ``1`` if the version of the C compiler matches ``version``, otherwise ``0``.
  112. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  113. ``$<CXX_COMPILER_VERSION:version>``
  114. ``1`` if the version of the CXX compiler matches ``version``, otherwise ``0``.
  115. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  116. ``$<CUDA_COMPILER_VERSION:version>``
  117. ``1`` if the version of the CXX compiler matches ``version``, otherwise ``0``.
  118. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  119. ``$<Fortran_COMPILER_VERSION:version>``
  120. ``1`` if the version of the Fortran compiler matches ``version``, otherwise ``0``.
  121. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  122. ``$<TARGET_POLICY:policy>``
  123. ``1`` if the ``policy`` was NEW when the 'head' target was created,
  124. else ``0``. If the ``policy`` was not set, the warning message for the policy
  125. will be emitted. This generator expression only works for a subset of
  126. policies.
  127. ``$<COMPILE_FEATURES:features>``
  128. where ``features`` is a comma-spearated list.
  129. Evaluates to ``1`` if all of the ``features`` are available for the 'head'
  130. target, and ``0`` otherwise. If this expression is used while evaluating
  131. the link implementation of a target and if any dependency transitively
  132. increases the required :prop_tgt:`C_STANDARD` or :prop_tgt:`CXX_STANDARD`
  133. for the 'head' target, an error is reported. See the
  134. :manual:`cmake-compile-features(7)` manual for information on
  135. compile features and a list of supported compilers.
  136. .. _`Boolean COMPILE_LANGUAGE Generator Expression`:
  137. ``$<COMPILE_LANG_AND_ID:language,compiler_ids>``
  138. ``1`` when the language used for compilation unit matches ``language`` and
  139. the CMake's compiler id of the language compiler matches any one of the
  140. entries in ``compiler_ids``, otherwise ``0``. This expression is a short form
  141. for the combination of ``$<COMPILE_LANGUAGE:language>`` and
  142. ``$<LANG_COMPILER_ID:compiler_ids>``. This expression may be used to specify
  143. compile options, compile definitions, and include directories for source files of a
  144. particular language and compiler combination in a target. For example:
  145. .. code-block:: cmake
  146. add_executable(myapp main.cpp foo.c bar.cpp zot.cu)
  147. target_compile_definitions(myapp
  148. PRIVATE $<$<COMPILE_LANG_AND_ID:CXX,AppleClang,Clang>:COMPILING_CXX_WITH_CLANG>
  149. $<$<COMPILE_LANG_AND_ID:CXX,Intel>:COMPILING_CXX_WITH_INTEL>
  150. $<$<COMPILE_LANG_AND_ID:C,Clang>:COMPILING_C_WITH_CLANG>
  151. )
  152. This specifies the use of different compile definitions based on both
  153. the compiler id and compilation language. This example will have a
  154. ``COMPILING_CXX_WITH_CLANG`` compile definition when Clang is the CXX
  155. compiler, and ``COMPILING_CXX_WITH_INTEL`` when Intel is the CXX compiler.
  156. Likewise when the C compiler is Clang it will only see the ``COMPILING_C_WITH_CLANG``
  157. definition.
  158. Without the ``COMPILE_LANG_AND_ID`` generator expression the same logic
  159. would be expressed as:
  160. .. code-block:: cmake
  161. target_compile_definitions(myapp
  162. PRIVATE $<$<AND:$<COMPILE_LANGUAGE:CXX>,$<CXX_COMPILER_ID:AppleClang,Clang>>:COMPILING_CXX_WITH_CLANG>
  163. $<$<AND:$<COMPILE_LANGUAGE:CXX>,$<CXX_COMPILER_ID:Intel>>:COMPILING_CXX_WITH_INTEL>
  164. $<$<AND:$<COMPILE_LANGUAGE:C>,$<C_COMPILER_ID:Clang>>:COMPILING_C_WITH_CLANG>
  165. )
  166. ``$<COMPILE_LANGUAGE:languages>``
  167. ``1`` when the language used for compilation unit matches any of the entries
  168. in ``languages``, otherwise ``0``. This expression may be used to specify
  169. compile options, compile definitions, and include directories for source files of a
  170. particular language in a target. For example:
  171. .. code-block:: cmake
  172. add_executable(myapp main.cpp foo.c bar.cpp zot.cu)
  173. target_compile_options(myapp
  174. PRIVATE $<$<COMPILE_LANGUAGE:CXX>:-fno-exceptions>
  175. )
  176. target_compile_definitions(myapp
  177. PRIVATE $<$<COMPILE_LANGUAGE:CXX>:COMPILING_CXX>
  178. $<$<COMPILE_LANGUAGE:CUDA>:COMPILING_CUDA>
  179. )
  180. target_include_directories(myapp
  181. PRIVATE $<$<COMPILE_LANGUAGE:CXX,CUDA>:/opt/foo/headers>
  182. )
  183. This specifies the use of the ``-fno-exceptions`` compile option,
  184. ``COMPILING_CXX`` compile definition, and ``cxx_headers`` include
  185. directory for C++ only (compiler id checks elided). It also specifies
  186. a ``COMPILING_CUDA`` compile definition for CUDA.
  187. Note that with :ref:`Visual Studio Generators` and :generator:`Xcode` there
  188. is no way to represent target-wide compile definitions or include directories
  189. separately for ``C`` and ``CXX`` languages.
  190. Also, with :ref:`Visual Studio Generators` there is no way to represent
  191. target-wide flags separately for ``C`` and ``CXX`` languages. Under these
  192. generators, expressions for both C and C++ sources will be evaluated
  193. using ``CXX`` if there are any C++ sources and otherwise using ``C``.
  194. A workaround is to create separate libraries for each source file language
  195. instead:
  196. .. code-block:: cmake
  197. add_library(myapp_c foo.c)
  198. add_library(myapp_cxx bar.cpp)
  199. target_compile_options(myapp_cxx PUBLIC -fno-exceptions)
  200. add_executable(myapp main.cpp)
  201. target_link_libraries(myapp myapp_c myapp_cxx)
  202. String-Valued Generator Expressions
  203. ===================================
  204. These expressions expand to some string.
  205. For example,
  206. .. code-block:: cmake
  207. include_directories(/usr/include/$<CXX_COMPILER_ID>/)
  208. expands to ``/usr/include/GNU/`` or ``/usr/include/Clang/`` etc, depending on
  209. the compiler identifier.
  210. String-valued expressions may also be combined with other expressions.
  211. Here an example for a string-valued expression within a boolean expressions
  212. within a conditional expression:
  213. .. code-block:: cmake
  214. $<$<VERSION_LESS:$<CXX_COMPILER_VERSION>,4.2.0>:OLD_COMPILER>
  215. expands to ``OLD_COMPILER`` if the
  216. :variable:`CMAKE_CXX_COMPILER_VERSION <CMAKE_<LANG>_COMPILER_VERSION>` is less
  217. than 4.2.0.
  218. And here two nested string-valued expressions:
  219. .. code-block:: cmake
  220. -I$<JOIN:$<TARGET_PROPERTY:INCLUDE_DIRECTORIES>, -I>
  221. generates a string of the entries in the :prop_tgt:`INCLUDE_DIRECTORIES` target
  222. property with each entry preceded by ``-I``.
  223. Expanding on the previous example, if one first wants to check if the
  224. ``INCLUDE_DIRECTORIES`` property is non-empty, then it is advisable to
  225. introduce a helper variable to keep the code readable:
  226. .. code-block:: cmake
  227. set(prop "$<TARGET_PROPERTY:INCLUDE_DIRECTORIES>") # helper variable
  228. $<$<BOOL:${prop}>:-I$<JOIN:${prop}, -I>>
  229. The following string-valued generator expressions are available:
  230. Escaped Characters
  231. ------------------
  232. String literals to escape the special meaning a character would otherwise have:
  233. ``$<ANGLE-R>``
  234. A literal ``>``. Used for example to compare strings that contain a ``>``.
  235. ``$<COMMA>``
  236. A literal ``,``. Used for example to compare strings which contain a ``,``.
  237. ``$<SEMICOLON>``
  238. A literal ``;``. Used to prevent list expansion on an argument with ``;``.
  239. .. _`Conditional Generator Expressions`:
  240. Conditional Expressions
  241. -----------------------
  242. Conditional generator expressions depend on a boolean condition
  243. that must be ``0`` or ``1``.
  244. ``$<condition:true_string>``
  245. Evaluates to ``true_string`` if ``condition`` is ``1``.
  246. Otherwise evaluates to the empty string.
  247. ``$<IF:condition,true_string,false_string>``
  248. Evaluates to ``true_string`` if ``condition`` is ``1``.
  249. Otherwise evaluates to ``false_string``.
  250. Typically, the ``condition`` is a :ref:`boolean generator expression
  251. <Boolean Generator Expressions>`. For instance,
  252. .. code-block:: cmake
  253. $<$<CONFIG:Debug>:DEBUG_MODE>
  254. expands to ``DEBUG_MODE`` when the ``Debug`` configuration is used, and
  255. otherwise expands to the empty string.
  256. .. _`String Transforming Generator Expressions`:
  257. String Transformations
  258. ----------------------
  259. ``$<JOIN:list,string>``
  260. Joins the list with the content of ``string``.
  261. ``$<REMOVE_DUPLICATES:list>``
  262. Removes duplicated items in the given ``list``.
  263. ``$<FILTER:list,INCLUDE|EXCLUDE,regex>``
  264. Includes or removes items from ``list`` that match the regular expression ``regex``.
  265. ``$<LOWER_CASE:string>``
  266. Content of ``string`` converted to lower case.
  267. ``$<UPPER_CASE:string>``
  268. Content of ``string`` converted to upper case.
  269. ``$<GENEX_EVAL:expr>``
  270. Content of ``expr`` evaluated as a generator expression in the current
  271. context. This enables consumption of generator expressions whose
  272. evaluation results itself in generator expressions.
  273. ``$<TARGET_GENEX_EVAL:tgt,expr>``
  274. Content of ``expr`` evaluated as a generator expression in the context of
  275. ``tgt`` target. This enables consumption of custom target properties that
  276. themselves contain generator expressions.
  277. Having the capability to evaluate generator expressions is very useful when
  278. you want to manage custom properties supporting generator expressions.
  279. For example:
  280. .. code-block:: cmake
  281. add_library(foo ...)
  282. set_property(TARGET foo PROPERTY
  283. CUSTOM_KEYS $<$<CONFIG:DEBUG>:FOO_EXTRA_THINGS>
  284. )
  285. add_custom_target(printFooKeys
  286. COMMAND ${CMAKE_COMMAND} -E echo $<TARGET_PROPERTY:foo,CUSTOM_KEYS>
  287. )
  288. This naive implementation of the ``printFooKeys`` custom command is wrong
  289. because ``CUSTOM_KEYS`` target property is not evaluated and the content
  290. is passed as is (i.e. ``$<$<CONFIG:DEBUG>:FOO_EXTRA_THINGS>``).
  291. To have the expected result (i.e. ``FOO_EXTRA_THINGS`` if config is
  292. ``Debug``), it is required to evaluate the output of
  293. ``$<TARGET_PROPERTY:foo,CUSTOM_KEYS>``:
  294. .. code-block:: cmake
  295. add_custom_target(printFooKeys
  296. COMMAND ${CMAKE_COMMAND} -E
  297. echo $<TARGET_GENEX_EVAL:foo,$<TARGET_PROPERTY:foo,CUSTOM_KEYS>>
  298. )
  299. Variable Queries
  300. ----------------
  301. ``$<CONFIG>``
  302. Configuration name.
  303. ``$<CONFIGURATION>``
  304. Configuration name. Deprecated since CMake 3.0. Use ``CONFIG`` instead.
  305. ``$<PLATFORM_ID>``
  306. The current system's CMake platform id.
  307. See also the :variable:`CMAKE_SYSTEM_NAME` variable.
  308. ``$<C_COMPILER_ID>``
  309. The CMake's compiler id of the C compiler used.
  310. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  311. ``$<CXX_COMPILER_ID>``
  312. The CMake's compiler id of the CXX compiler used.
  313. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  314. ``$<CUDA_COMPILER_ID>``
  315. The CMake's compiler id of the CUDA compiler used.
  316. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  317. ``$<Fortran_COMPILER_ID>``
  318. The CMake's compiler id of the Fortran compiler used.
  319. See also the :variable:`CMAKE_<LANG>_COMPILER_ID` variable.
  320. ``$<C_COMPILER_VERSION>``
  321. The version of the C compiler used.
  322. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  323. ``$<CXX_COMPILER_VERSION>``
  324. The version of the CXX compiler used.
  325. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  326. ``$<CUDA_COMPILER_VERSION>``
  327. The version of the CUDA compiler used.
  328. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  329. ``$<Fortran_COMPILER_VERSION>``
  330. The version of the Fortran compiler used.
  331. See also the :variable:`CMAKE_<LANG>_COMPILER_VERSION` variable.
  332. ``$<COMPILE_LANGUAGE>``
  333. The compile language of source files when evaluating compile options.
  334. See :ref:`the related boolean expression
  335. <Boolean COMPILE_LANGUAGE Generator Expression>`
  336. ``$<COMPILE_LANGUAGE:language>``
  337. for notes about the portability of this generator expression.
  338. Target-Dependent Queries
  339. ------------------------
  340. ``$<TARGET_NAME_IF_EXISTS:tgt>``
  341. Expands to the ``tgt`` if the given target exists, an empty string
  342. otherwise.
  343. ``$<TARGET_FILE:tgt>``
  344. Full path to main file (.exe, .so.1.2, .a) where ``tgt`` is the name of a
  345. target.
  346. ``$<TARGET_FILE_BASE_NAME:tgt>``
  347. Base name of main file where ``tgt`` is the name of a target.
  348. The base name corresponds to the target file name (see
  349. ``$<TARGET_FILE_NAME:tgt>``) without prefix and suffix. For example, if
  350. target file name is ``libbase.so``, the base name is ``base``.
  351. See also the :prop_tgt:`OUTPUT_NAME`, :prop_tgt:`ARCHIVE_OUTPUT_NAME`,
  352. :prop_tgt:`LIBRARY_OUTPUT_NAME` and :prop_tgt:`RUNTIME_OUTPUT_NAME`
  353. target properties and their configuration specific variants
  354. :prop_tgt:`OUTPUT_NAME_<CONFIG>`, :prop_tgt:`ARCHIVE_OUTPUT_NAME_<CONFIG>`,
  355. :prop_tgt:`LIBRARY_OUTPUT_NAME_<CONFIG>` and
  356. :prop_tgt:`RUNTIME_OUTPUT_NAME_<CONFIG>`.
  357. The :prop_tgt:`<CONFIG>_POSTFIX` and :prop_tgt:`DEBUG_POSTFIX` target
  358. properties can also be considered.
  359. Note that ``tgt`` is not added as a dependency of the target this
  360. expression is evaluated on.
  361. ``$<TARGET_FILE_PREFIX:tgt>``
  362. Prefix of main file where ``tgt`` is the name of a target.
  363. See also the :prop_tgt:`PREFIX` target property.
  364. Note that ``tgt`` is not added as a dependency of the target this
  365. expression is evaluated on.
  366. ``$<TARGET_FILE_SUFFIX:tgt>``
  367. Suffix of main file where ``tgt`` is the name of a target.
  368. The suffix corresponds to the file extension (such as ".so" or ".exe").
  369. See also the :prop_tgt:`SUFFIX` target property.
  370. Note that ``tgt`` is not added as a dependency of the target this
  371. expression is evaluated on.
  372. ``$<TARGET_FILE_NAME:tgt>``
  373. Name of main file (.exe, .so.1.2, .a).
  374. ``$<TARGET_FILE_DIR:tgt>``
  375. Directory of main file (.exe, .so.1.2, .a).
  376. ``$<TARGET_LINKER_FILE:tgt>``
  377. File used to link (.a, .lib, .so) where ``tgt`` is the name of a target.
  378. ``$<TARGET_LINKER_FILE_BASE_NAME:tgt>``
  379. Base name of file used to link where ``tgt`` is the name of a target.
  380. The base name corresponds to the target linker file name (see
  381. ``$<TARGET_LINKER_FILE_NAME:tgt>``) without prefix and suffix. For example,
  382. if target file name is ``libbase.a``, the base name is ``base``.
  383. See also the :prop_tgt:`OUTPUT_NAME`, :prop_tgt:`ARCHIVE_OUTPUT_NAME`,
  384. and :prop_tgt:`LIBRARY_OUTPUT_NAME` target properties and their configuration
  385. specific variants :prop_tgt:`OUTPUT_NAME_<CONFIG>`,
  386. :prop_tgt:`ARCHIVE_OUTPUT_NAME_<CONFIG>` and
  387. :prop_tgt:`LIBRARY_OUTPUT_NAME_<CONFIG>`.
  388. The :prop_tgt:`<CONFIG>_POSTFIX` and :prop_tgt:`DEBUG_POSTFIX` target
  389. properties can also be considered.
  390. Note that ``tgt`` is not added as a dependency of the target this
  391. expression is evaluated on.
  392. ``$<TARGET_LINKER_FILE_PREFIX:tgt>``
  393. Prefix of file used to link where ``tgt`` is the name of a target.
  394. See also the :prop_tgt:`PREFIX` and :prop_tgt:`IMPORT_PREFIX` target
  395. properties.
  396. Note that ``tgt`` is not added as a dependency of the target this
  397. expression is evaluated on.
  398. ``$<TARGET_LINKER_FILE_SUFFIX:tgt>``
  399. Suffix of file used to link where ``tgt`` is the name of a target.
  400. The suffix corresponds to the file extension (such as ".so" or ".lib").
  401. See also the :prop_tgt:`SUFFIX` and :prop_tgt:`IMPORT_SUFFIX` target
  402. properties.
  403. Note that ``tgt`` is not added as a dependency of the target this
  404. expression is evaluated on.
  405. ``$<TARGET_LINKER_FILE_NAME:tgt>``
  406. Name of file used to link (.a, .lib, .so).
  407. ``$<TARGET_LINKER_FILE_DIR:tgt>``
  408. Directory of file used to link (.a, .lib, .so).
  409. ``$<TARGET_SONAME_FILE:tgt>``
  410. File with soname (.so.3) where ``tgt`` is the name of a target.
  411. ``$<TARGET_SONAME_FILE_NAME:tgt>``
  412. Name of file with soname (.so.3).
  413. ``$<TARGET_SONAME_FILE_DIR:tgt>``
  414. Directory of with soname (.so.3).
  415. ``$<TARGET_PDB_FILE:tgt>``
  416. Full path to the linker generated program database file (.pdb)
  417. where ``tgt`` is the name of a target.
  418. See also the :prop_tgt:`PDB_NAME` and :prop_tgt:`PDB_OUTPUT_DIRECTORY`
  419. target properties and their configuration specific variants
  420. :prop_tgt:`PDB_NAME_<CONFIG>` and :prop_tgt:`PDB_OUTPUT_DIRECTORY_<CONFIG>`.
  421. ``$<TARGET_PDB_FILE_BASE_NAME:tgt>``
  422. Base name of the linker generated program database file (.pdb)
  423. where ``tgt`` is the name of a target.
  424. The base name corresponds to the target PDB file name (see
  425. ``$<TARGET_PDB_FILE_NAME:tgt>``) without prefix and suffix. For example,
  426. if target file name is ``base.pdb``, the base name is ``base``.
  427. See also the :prop_tgt:`PDB_NAME` target property and its configuration
  428. specific variant :prop_tgt:`PDB_NAME_<CONFIG>`.
  429. The :prop_tgt:`<CONFIG>_POSTFIX` and :prop_tgt:`DEBUG_POSTFIX` target
  430. properties can also be considered.
  431. Note that ``tgt`` is not added as a dependency of the target this
  432. expression is evaluated on.
  433. ``$<TARGET_PDB_FILE_NAME:tgt>``
  434. Name of the linker generated program database file (.pdb).
  435. ``$<TARGET_PDB_FILE_DIR:tgt>``
  436. Directory of the linker generated program database file (.pdb).
  437. ``$<TARGET_BUNDLE_DIR:tgt>``
  438. Full path to the bundle directory (``my.app``, ``my.framework``, or
  439. ``my.bundle``) where ``tgt`` is the name of a target.
  440. ``$<TARGET_BUNDLE_CONTENT_DIR:tgt>``
  441. Full path to the bundle content directory where ``tgt`` is the name of a
  442. target. For the macOS SDK it leads to ``my.app/Contents``, ``my.framework``,
  443. or ``my.bundle/Contents``. For all other SDKs (e.g. iOS) it leads to
  444. ``my.app``, ``my.framework``, or ``my.bundle`` due to the flat bundle
  445. structure.
  446. ``$<TARGET_PROPERTY:tgt,prop>``
  447. Value of the property ``prop`` on the target ``tgt``.
  448. Note that ``tgt`` is not added as a dependency of the target this
  449. expression is evaluated on.
  450. ``$<TARGET_PROPERTY:prop>``
  451. Value of the property ``prop`` on the target on which the generator
  452. expression is evaluated. Note that for generator expressions in
  453. :ref:`Target Usage Requirements` this is the value of the property
  454. on the consuming target rather than the target specifying the
  455. requirement.
  456. ``$<INSTALL_PREFIX>``
  457. Content of the install prefix when the target is exported via
  458. :command:`install(EXPORT)` and empty otherwise.
  459. Output-Related Expressions
  460. --------------------------
  461. ``$<TARGET_NAME:...>``
  462. Marks ``...`` as being the name of a target. This is required if exporting
  463. targets to multiple dependent export sets. The ``...`` must be a literal
  464. name of a target- it may not contain generator expressions.
  465. ``$<LINK_ONLY:...>``
  466. Content of ``...`` except when evaluated in a link interface while
  467. propagating :ref:`Target Usage Requirements`, in which case it is the
  468. empty string.
  469. Intended for use only in an :prop_tgt:`INTERFACE_LINK_LIBRARIES` target
  470. property, perhaps via the :command:`target_link_libraries` command,
  471. to specify private link dependencies without other usage requirements.
  472. ``$<INSTALL_INTERFACE:...>``
  473. Content of ``...`` when the property is exported using :command:`install(EXPORT)`,
  474. and empty otherwise.
  475. ``$<BUILD_INTERFACE:...>``
  476. Content of ``...`` when the property is exported using :command:`export`, or
  477. when the target is used by another target in the same buildsystem. Expands to
  478. the empty string otherwise.
  479. ``$<MAKE_C_IDENTIFIER:...>``
  480. Content of ``...`` converted to a C identifier. The conversion follows the
  481. same behavior as :command:`string(MAKE_C_IDENTIFIER)`.
  482. ``$<TARGET_OBJECTS:objLib>``
  483. List of objects resulting from build of ``objLib``.
  484. ``$<SHELL_PATH:...>``
  485. Content of ``...`` converted to shell path style. For example, slashes are
  486. converted to backslashes in Windows shells and drive letters are converted
  487. to posix paths in MSYS shells. The ``...`` must be an absolute path.
  488. The ``...`` may be a :ref:`semicolon-separated list <CMake Language Lists>`
  489. of paths, in which case each path is converted individually and a result
  490. list is generated using the shell path separator (``:`` on POSIX and
  491. ``;`` on Windows). Be sure to enclose the argument containing this genex
  492. in double quotes in CMake source code so that ``;`` does not split arguments.
  493. Debugging
  494. =========
  495. Since generator expressions are evaluated during generation of the buildsystem,
  496. and not during processing of ``CMakeLists.txt`` files, it is not possible to
  497. inspect their result with the :command:`message()` command.
  498. One possible way to generate debug messages is to add a custom target,
  499. .. code-block:: cmake
  500. add_custom_target(genexdebug COMMAND ${CMAKE_COMMAND} -E echo "$<...>")
  501. The shell command ``make genexdebug`` (invoked after execution of ``cmake``)
  502. would then print the result of ``$<...>``.
  503. Another way is to write debug messages to a file:
  504. .. code-block:: cmake
  505. file(GENERATE OUTPUT filename CONTENT "$<...>")