cmake-generator-expressions.7.rst 25 KB

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