cmake-buildsystem.7.rst 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986
  1. .. cmake-manual-description: CMake Buildsystem Reference
  2. cmake-buildsystem(7)
  3. ********************
  4. .. only:: html
  5. .. contents::
  6. Introduction
  7. ============
  8. A CMake-based buildsystem is organized as a set of high-level logical
  9. targets. Each target corresponds to an executable or library, or
  10. is a custom target containing custom commands. Dependencies between the
  11. targets are expressed in the buildsystem to determine the build order
  12. and the rules for regeneration in response to change.
  13. Binary Targets
  14. ==============
  15. Executables and libraries are defined using the :command:`add_executable`
  16. and :command:`add_library` commands. The resulting binary files have
  17. appropriate prefixes, suffixes and extensions for the platform targeted.
  18. Dependencies between binary targets are expressed using the
  19. :command:`target_link_libraries` command:
  20. .. code-block:: cmake
  21. add_library(archive archive.cpp zip.cpp lzma.cpp)
  22. add_executable(zipapp zipapp.cpp)
  23. target_link_libraries(zipapp archive)
  24. ``archive`` is defined as a static library -- an archive containing objects
  25. compiled from ``archive.cpp``, ``zip.cpp``, and ``lzma.cpp``. ``zipapp``
  26. is defined as an executable formed by compiling and linking ``zipapp.cpp``.
  27. When linking the ``zipapp`` executable, the ``archive`` static library is
  28. linked in.
  29. Binary Executables
  30. ------------------
  31. The :command:`add_executable` command defines an executable target:
  32. .. code-block:: cmake
  33. add_executable(mytool mytool.cpp)
  34. Commands such as :command:`add_custom_command`, which generates rules to be
  35. run at build time can transparently use an :prop_tgt:`EXECUTABLE <TYPE>`
  36. target as a ``COMMAND`` executable. The buildsystem rules will ensure that
  37. the executable is built before attempting to run the command.
  38. Binary Library Types
  39. --------------------
  40. .. _`Normal Libraries`:
  41. Normal Libraries
  42. ^^^^^^^^^^^^^^^^
  43. By default, the :command:`add_library` command defines a static library,
  44. unless a type is specified. A type may be specified when using the command:
  45. .. code-block:: cmake
  46. add_library(archive SHARED archive.cpp zip.cpp lzma.cpp)
  47. .. code-block:: cmake
  48. add_library(archive STATIC archive.cpp zip.cpp lzma.cpp)
  49. The :variable:`BUILD_SHARED_LIBS` variable may be enabled to change the
  50. behavior of :command:`add_library` to build shared libraries by default.
  51. In the context of the buildsystem definition as a whole, it is largely
  52. irrelevant whether particular libraries are ``SHARED`` or ``STATIC`` --
  53. the commands, dependency specifications and other APIs work similarly
  54. regardless of the library type. The ``MODULE`` library type is
  55. dissimilar in that it is generally not linked to -- it is not used in
  56. the right-hand-side of the :command:`target_link_libraries` command.
  57. It is a type which is loaded as a plugin using runtime techniques.
  58. If the library does not export any unmanaged symbols (e.g. Windows
  59. resource DLL, C++/CLI DLL), it is required that the library not be a
  60. ``SHARED`` library because CMake expects ``SHARED`` libraries to export
  61. at least one symbol.
  62. .. code-block:: cmake
  63. add_library(archive MODULE 7z.cpp)
  64. .. _`Apple Frameworks`:
  65. Apple Frameworks
  66. """"""""""""""""
  67. A ``SHARED`` library may be marked with the :prop_tgt:`FRAMEWORK`
  68. target property to create an OS X Framework:
  69. .. code-block:: cmake
  70. add_library(MyFramework SHARED MyFramework.cpp)
  71. set_target_properties(MyFramework PROPERTIES
  72. FRAMEWORK 1
  73. FRAMEWORK_VERSION A
  74. )
  75. .. _`Object Libraries`:
  76. Object Libraries
  77. ^^^^^^^^^^^^^^^^
  78. The ``OBJECT`` library type is also not linked to. It defines a non-archival
  79. collection of object files resulting from compiling the given source files.
  80. The object files collection can be used as source inputs to other targets:
  81. .. code-block:: cmake
  82. add_library(archive OBJECT archive.cpp zip.cpp lzma.cpp)
  83. add_library(archiveExtras STATIC $<TARGET_OBJECTS:archive> extras.cpp)
  84. add_executable(test_exe $<TARGET_OBJECTS:archive> test.cpp)
  85. ``OBJECT`` libraries may only be used locally as sources in a buildsystem --
  86. they may not be installed, exported, or used in the right hand side of
  87. :command:`target_link_libraries`. They also may not be used as the ``TARGET``
  88. in a use of the :command:`add_custom_command(TARGET)` command signature.
  89. Although object libraries may not be named directly in calls to
  90. the :command:`target_link_libraries` command, they can be "linked"
  91. indirectly by using an :ref:`Interface Library <Interface Libraries>`
  92. whose :prop_tgt:`INTERFACE_SOURCES` target property is set to name
  93. ``$<TARGET_OBJECTS:objlib>``.
  94. Build Specification and Usage Requirements
  95. ==========================================
  96. The :command:`target_include_directories`, :command:`target_compile_definitions`
  97. and :command:`target_compile_options` commands specify the build specifications
  98. and the usage requirements of binary targets. The commands populate the
  99. :prop_tgt:`INCLUDE_DIRECTORIES`, :prop_tgt:`COMPILE_DEFINITIONS` and
  100. :prop_tgt:`COMPILE_OPTIONS` target properties respectively, and/or the
  101. :prop_tgt:`INTERFACE_INCLUDE_DIRECTORIES`, :prop_tgt:`INTERFACE_COMPILE_DEFINITIONS`
  102. and :prop_tgt:`INTERFACE_COMPILE_OPTIONS` target properties.
  103. Each of the commands has a ``PRIVATE``, ``PUBLIC`` and ``INTERFACE`` mode. The
  104. ``PRIVATE`` mode populates only the non-``INTERFACE_`` variant of the target
  105. property and the ``INTERFACE`` mode populates only the ``INTERFACE_`` variants.
  106. The ``PUBLIC`` mode populates both variants of the repective target property.
  107. Each command may be invoked with multiple uses of each keyword:
  108. .. code-block:: cmake
  109. target_compile_definitions(archive
  110. PRIVATE BUILDING_WITH_LZMA
  111. INTERFACE USING_ARCHIVE_LIB
  112. )
  113. Note that usage requirements are not designed as a way to make downstreams
  114. use particular :prop_tgt:`COMPILE_OPTIONS` or
  115. :prop_tgt:`COMPILE_DEFINITIONS` etc for convenience only. The contents of
  116. the properties must be **requirements**, not merely recommendations or
  117. convenience.
  118. See the :ref:`Creating Relocatable Packages` section of the
  119. :manual:`cmake-packages(7)` manual for discussion of additional care
  120. that must be taken when specifying usage requirements while creating
  121. packages for redistribution.
  122. Target Properties
  123. -----------------
  124. The contents of the :prop_tgt:`INCLUDE_DIRECTORIES`,
  125. :prop_tgt:`COMPILE_DEFINITIONS` and :prop_tgt:`COMPILE_OPTIONS` target
  126. properties are used appropriately when compiling the source files of a
  127. binary target.
  128. Entries in the :prop_tgt:`INCLUDE_DIRECTORIES` are added to the compile line
  129. with ``-I`` or ``-isystem`` prefixes and in the order of appearance in the
  130. property value.
  131. Entries in the :prop_tgt:`COMPILE_DEFINITIONS` are prefixed with ``-D`` or
  132. ``/D`` and added to the compile line in an unspecified order. The
  133. :prop_tgt:`DEFINE_SYMBOL` target property is also added as a compile
  134. definition as a special convenience case for ``SHARED`` and ``MODULE``
  135. library targets.
  136. Entries in the :prop_tgt:`COMPILE_OPTIONS` are escaped for the shell and added
  137. in the order of appearance in the property value. Several compile options have
  138. special separate handling, such as :prop_tgt:`POSITION_INDEPENDENT_CODE`.
  139. The contents of the :prop_tgt:`INTERFACE_INCLUDE_DIRECTORIES`,
  140. :prop_tgt:`INTERFACE_COMPILE_DEFINITIONS` and
  141. :prop_tgt:`INTERFACE_COMPILE_OPTIONS` target properties are
  142. *Usage Requirements* -- they specify content which consumers
  143. must use to correctly compile and link with the target they appear on.
  144. For any binary target, the contents of each ``INTERFACE_`` property on
  145. each target specified in a :command:`target_link_libraries` command is
  146. consumed:
  147. .. code-block:: cmake
  148. set(srcs archive.cpp zip.cpp)
  149. if (LZMA_FOUND)
  150. list(APPEND srcs lzma.cpp)
  151. endif()
  152. add_library(archive SHARED ${srcs})
  153. if (LZMA_FOUND)
  154. # The archive library sources are compiled with -DBUILDING_WITH_LZMA
  155. target_compile_definitions(archive PRIVATE BUILDING_WITH_LZMA)
  156. endif()
  157. target_compile_definitions(archive INTERFACE USING_ARCHIVE_LIB)
  158. add_executable(consumer)
  159. # Link consumer to archive and consume its usage requirements. The consumer
  160. # executable sources are compiled with -DUSING_ARCHIVE_LIB.
  161. target_link_libraries(consumer archive)
  162. Because it is common to require that the source directory and corresponding
  163. build directory are added to the :prop_tgt:`INCLUDE_DIRECTORIES`, the
  164. :variable:`CMAKE_INCLUDE_CURRENT_DIR` variable can be enabled to conveniently
  165. add the corresponding directories to the :prop_tgt:`INCLUDE_DIRECTORIES` of
  166. all targets. The variable :variable:`CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE`
  167. can be enabled to add the corresponding directories to the
  168. :prop_tgt:`INTERFACE_INCLUDE_DIRECTORIES` of all targets. This makes use of
  169. targets in multiple different directories convenient through use of the
  170. :command:`target_link_libraries` command.
  171. .. _`Target Usage Requirements`:
  172. Transitive Usage Requirements
  173. -----------------------------
  174. The usage requirements of a target can transitively propagate to dependents.
  175. The :command:`target_link_libraries` command has ``PRIVATE``,
  176. ``INTERFACE`` and ``PUBLIC`` keywords to control the propagation.
  177. .. code-block:: cmake
  178. add_library(archive archive.cpp)
  179. target_compile_definitions(archive INTERFACE USING_ARCHIVE_LIB)
  180. add_library(serialization serialization.cpp)
  181. target_compile_definitions(serialization INTERFACE USING_SERIALIZATION_LIB)
  182. add_library(archiveExtras extras.cpp)
  183. target_link_libraries(archiveExtras PUBLIC archive)
  184. target_link_libraries(archiveExtras PRIVATE serialization)
  185. # archiveExtras is compiled with -DUSING_ARCHIVE_LIB
  186. # and -DUSING_SERIALIZATION_LIB
  187. add_executable(consumer consumer.cpp)
  188. # consumer is compiled with -DUSING_ARCHIVE_LIB
  189. target_link_libraries(consumer archiveExtras)
  190. Because ``archive`` is a ``PUBLIC`` dependency of ``archiveExtras``, the
  191. usage requirements of it are propagated to ``consumer`` too. Because
  192. ``serialization`` is a ``PRIVATE`` dependency of ``archive``, the usage
  193. requirements of it are not propagated to ``consumer``.
  194. Generally, a dependency should be specified in a use of
  195. :command:`target_link_libraries` with the ``PRIVATE`` keyword if it is used by
  196. only the implementation of a library, and not in the header files. If a
  197. dependency is additionally used in the header files of a library (e.g. for
  198. class inheritance), then it should be specified as a ``PUBLIC`` dependency.
  199. A dependency which is not used by the implementation of a library, but only by
  200. its headers should be specified as an ``INTERFACE`` dependency. The
  201. :command:`target_link_libraries` command may be invoked with multiple uses of
  202. each keyword:
  203. .. code-block:: cmake
  204. target_link_libraries(archiveExtras
  205. PUBLIC archive
  206. PRIVATE serialization
  207. )
  208. Usage requirements are propagated by reading the ``INTERFACE_`` variants
  209. of target properties from dependencies and appending the values to the
  210. non-``INTERFACE_`` variants of the operand. For example, the
  211. :prop_tgt:`INTERFACE_INCLUDE_DIRECTORIES` of dependencies is read and
  212. appended to the :prop_tgt:`INCLUDE_DIRECTORIES` of the operand. In cases
  213. where order is relevant and maintained, and the order resulting from the
  214. :command:`target_link_libraries` calls does not allow correct compilation,
  215. use of an appropriate command to set the property directly may update the
  216. order.
  217. For example, if the linked libraries for a target must be specified
  218. in the order ``lib1`` ``lib2`` ``lib3`` , but the include directories must
  219. be specified in the order ``lib3`` ``lib1`` ``lib2``:
  220. .. code-block:: cmake
  221. target_link_libraries(myExe lib1 lib2 lib3)
  222. target_include_directories(myExe
  223. PRIVATE $<TARGET_PROPERTY:lib3,INTERFACE_INCLUDE_DIRECTORIES>)
  224. Note that care must be taken when specifying usage requirements for targets
  225. which will be exported for installation using the :command:`install(EXPORT)`
  226. command. See :ref:`Creating Packages` for more.
  227. .. _`Compatible Interface Properties`:
  228. Compatible Interface Properties
  229. -------------------------------
  230. Some target properties are required to be compatible between a target and
  231. the interface of each dependency. For example, the
  232. :prop_tgt:`POSITION_INDEPENDENT_CODE` target property may specify a
  233. boolean value of whether a target should be compiled as
  234. position-independent-code, which has platform-specific consequences.
  235. A target may also specify the usage requirement
  236. :prop_tgt:`INTERFACE_POSITION_INDEPENDENT_CODE` to communicate that
  237. consumers must be compiled as position-independent-code.
  238. .. code-block:: cmake
  239. add_executable(exe1 exe1.cpp)
  240. set_property(TARGET exe1 PROPERTY POSITION_INDEPENDENT_CODE ON)
  241. add_library(lib1 SHARED lib1.cpp)
  242. set_property(TARGET lib1 PROPERTY INTERFACE_POSITION_INDEPENDENT_CODE ON)
  243. add_executable(exe2 exe2.cpp)
  244. target_link_libraries(exe2 lib1)
  245. Here, both ``exe1`` and ``exe2`` will be compiled as position-independent-code.
  246. ``lib1`` will also be compiled as position-independent-code because that is the
  247. default setting for ``SHARED`` libraries. If dependencies have conflicting,
  248. non-compatible requirements :manual:`cmake(1)` issues a diagnostic:
  249. .. code-block:: cmake
  250. add_library(lib1 SHARED lib1.cpp)
  251. set_property(TARGET lib1 PROPERTY INTERFACE_POSITION_INDEPENDENT_CODE ON)
  252. add_library(lib2 SHARED lib2.cpp)
  253. set_property(TARGET lib2 PROPERTY INTERFACE_POSITION_INDEPENDENT_CODE OFF)
  254. add_executable(exe1 exe1.cpp)
  255. target_link_libraries(exe1 lib1)
  256. set_property(TARGET exe1 PROPERTY POSITION_INDEPENDENT_CODE OFF)
  257. add_executable(exe2 exe2.cpp)
  258. target_link_libraries(exe2 lib1 lib2)
  259. The ``lib1`` requirement ``INTERFACE_POSITION_INDEPENDENT_CODE`` is not
  260. "compatible" with the ``POSITION_INDEPENDENT_CODE`` property of the ``exe1``
  261. target. The library requires that consumers are built as
  262. position-independent-code, while the executable specifies to not built as
  263. position-independent-code, so a diagnostic is issued.
  264. The ``lib1`` and ``lib2`` requirements are not "compatible". One of them
  265. requires that consumers are built as position-independent-code, while
  266. the other requires that consumers are not built as position-independent-code.
  267. Because ``exe2`` links to both and they are in conflict, a diagnostic is
  268. issued.
  269. To be "compatible", the :prop_tgt:`POSITION_INDEPENDENT_CODE` property,
  270. if set must be either the same, in a boolean sense, as the
  271. :prop_tgt:`INTERFACE_POSITION_INDEPENDENT_CODE` property of all transitively
  272. specified dependencies on which that property is set.
  273. This property of "compatible interface requirement" may be extended to other
  274. properties by specifying the property in the content of the
  275. :prop_tgt:`COMPATIBLE_INTERFACE_BOOL` target property. Each specified property
  276. must be compatible between the consuming target and the corresponding property
  277. with an ``INTERFACE_`` prefix from each dependency:
  278. .. code-block:: cmake
  279. add_library(lib1Version2 SHARED lib1_v2.cpp)
  280. set_property(TARGET lib1Version2 PROPERTY INTERFACE_CUSTOM_PROP ON)
  281. set_property(TARGET lib1Version2 APPEND PROPERTY
  282. COMPATIBLE_INTERFACE_BOOL CUSTOM_PROP
  283. )
  284. add_library(lib1Version3 SHARED lib1_v3.cpp)
  285. set_property(TARGET lib1Version3 PROPERTY INTERFACE_CUSTOM_PROP OFF)
  286. add_executable(exe1 exe1.cpp)
  287. target_link_libraries(exe1 lib1Version2) # CUSTOM_PROP will be ON
  288. add_executable(exe2 exe2.cpp)
  289. target_link_libraries(exe2 lib1Version2 lib1Version3) # Diagnostic
  290. Non-boolean properties may also participate in "compatible interface"
  291. computations. Properties specified in the
  292. :prop_tgt:`COMPATIBLE_INTERFACE_STRING`
  293. property must be either unspecified or compare to the same string among
  294. all transitively specified dependencies. This can be useful to ensure
  295. that multiple incompatible versions of a library are not linked together
  296. through transitive requirements of a target:
  297. .. code-block:: cmake
  298. add_library(lib1Version2 SHARED lib1_v2.cpp)
  299. set_property(TARGET lib1Version2 PROPERTY INTERFACE_LIB_VERSION 2)
  300. set_property(TARGET lib1Version2 APPEND PROPERTY
  301. COMPATIBLE_INTERFACE_STRING LIB_VERSION
  302. )
  303. add_library(lib1Version3 SHARED lib1_v3.cpp)
  304. set_property(TARGET lib1Version3 PROPERTY INTERFACE_LIB_VERSION 3)
  305. add_executable(exe1 exe1.cpp)
  306. target_link_libraries(exe1 lib1Version2) # LIB_VERSION will be "2"
  307. add_executable(exe2 exe2.cpp)
  308. target_link_libraries(exe2 lib1Version2 lib1Version3) # Diagnostic
  309. The :prop_tgt:`COMPATIBLE_INTERFACE_NUMBER_MAX` target property specifies
  310. that content will be evaluated numerically and the maximum number among all
  311. specified will be calculated:
  312. .. code-block:: cmake
  313. add_library(lib1Version2 SHARED lib1_v2.cpp)
  314. set_property(TARGET lib1Version2 PROPERTY INTERFACE_CONTAINER_SIZE_REQUIRED 200)
  315. set_property(TARGET lib1Version2 APPEND PROPERTY
  316. COMPATIBLE_INTERFACE_NUMBER_MAX CONTAINER_SIZE_REQUIRED
  317. )
  318. add_library(lib1Version3 SHARED lib1_v3.cpp)
  319. set_property(TARGET lib1Version2 PROPERTY INTERFACE_CONTAINER_SIZE_REQUIRED 1000)
  320. add_executable(exe1 exe1.cpp)
  321. # CONTAINER_SIZE_REQUIRED will be "200"
  322. target_link_libraries(exe1 lib1Version2)
  323. add_executable(exe2 exe2.cpp)
  324. # CONTAINER_SIZE_REQUIRED will be "1000"
  325. target_link_libraries(exe2 lib1Version2 lib1Version3)
  326. Similarly, the :prop_tgt:`COMPATIBLE_INTERFACE_NUMBER_MIN` may be used to
  327. calculate the numeric minimum value for a property from dependencies.
  328. Each calculated "compatible" property value may be read in the consumer at
  329. generate-time using generator expressions.
  330. Note that for each dependee, the set of properties specified in each
  331. compatible interface property must not intersect with the set specified in
  332. any of the other properties.
  333. Property Origin Debugging
  334. -------------------------
  335. Because build specifications can be determined by dependencies, the lack of
  336. locality of code which creates a target and code which is responsible for
  337. setting build specifications may make the code more difficult to reason about.
  338. :manual:`cmake(1)` provides a debugging facility to print the origin of the
  339. contents of properties which may be determined by dependencies. The properties
  340. which can be debugged are listed in the
  341. :variable:`CMAKE_DEBUG_TARGET_PROPERTIES` variable documentation:
  342. .. code-block:: cmake
  343. set(CMAKE_DEBUG_TARGET_PROPERTIES
  344. INCLUDE_DIRECTORIES
  345. COMPILE_DEFINITIONS
  346. POSITION_INDEPENDENT_CODE
  347. CONTAINER_SIZE_REQUIRED
  348. LIB_VERSION
  349. )
  350. add_executable(exe1 exe1.cpp)
  351. In the case of properties listed in :prop_tgt:`COMPATIBLE_INTERFACE_BOOL` or
  352. :prop_tgt:`COMPATIBLE_INTERFACE_STRING`, the debug output shows which target
  353. was responsible for setting the property, and which other dependencies also
  354. defined the property. In the case of
  355. :prop_tgt:`COMPATIBLE_INTERFACE_NUMBER_MAX` and
  356. :prop_tgt:`COMPATIBLE_INTERFACE_NUMBER_MIN`, the debug output shows the
  357. value of the property from each dependency, and whether the value determines
  358. the new extreme.
  359. Build Specification with Generator Expressions
  360. ----------------------------------------------
  361. Build specifications may use
  362. :manual:`generator expressions <cmake-generator-expressions(7)>` containing
  363. content which may be conditional or known only at generate-time. For example,
  364. the calculated "compatible" value of a property may be read with the
  365. ``TARGET_PROPERTY`` expression:
  366. .. code-block:: cmake
  367. add_library(lib1Version2 SHARED lib1_v2.cpp)
  368. set_property(TARGET lib1Version2 PROPERTY
  369. INTERFACE_CONTAINER_SIZE_REQUIRED 200)
  370. set_property(TARGET lib1Version2 APPEND PROPERTY
  371. COMPATIBLE_INTERFACE_NUMBER_MAX CONTAINER_SIZE_REQUIRED
  372. )
  373. add_executable(exe1 exe1.cpp)
  374. target_link_libraries(exe1 lib1Version2)
  375. target_compile_definitions(exe1 PRIVATE
  376. CONTAINER_SIZE=$<TARGET_PROPERTY:CONTAINER_SIZE_REQUIRED>
  377. )
  378. In this case, the ``exe1`` source files will be compiled with
  379. ``-DCONTAINER_SIZE=200``.
  380. Configuration determined build specifications may be conveniently set using
  381. the ``CONFIG`` generator expression.
  382. .. code-block:: cmake
  383. target_compile_definitions(exe1 PRIVATE
  384. $<$<CONFIG:Debug>:DEBUG_BUILD>
  385. )
  386. The ``CONFIG`` parameter is compared case-insensitively with the configuration
  387. being built. In the presence of :prop_tgt:`IMPORTED` targets, the content of
  388. :prop_tgt:`MAP_IMPORTED_CONFIG_DEBUG <MAP_IMPORTED_CONFIG_<CONFIG>>` is also
  389. accounted for by this expression.
  390. Some buildsystems generated by :manual:`cmake(1)` have a predetermined
  391. build-configuration set in the :variable:`CMAKE_BUILD_TYPE` variable. The
  392. buildsystem for the IDEs such as Visual Studio and Xcode are generated
  393. independent of the build-configuration, and the actual build configuration
  394. is not known until build-time. Therefore, code such as
  395. .. code-block:: cmake
  396. string(TOLOWER ${CMAKE_BUILD_TYPE} _type)
  397. if (_type STREQUAL debug)
  398. target_compile_definitions(exe1 PRIVATE DEBUG_BUILD)
  399. endif()
  400. may appear to work for ``Makefile`` based and ``Ninja`` generators, but is not
  401. portable to IDE generators. Additionally, the :prop_tgt:`IMPORTED`
  402. configuration-mappings are not accounted for with code like this, so it should
  403. be avoided.
  404. The unary ``TARGET_PROPERTY`` generator expression and the ``TARGET_POLICY``
  405. generator expression are evaluated with the consuming target context. This
  406. means that a usage requirement specification may be evaluated differently based
  407. on the consumer:
  408. .. code-block:: cmake
  409. add_library(lib1 lib1.cpp)
  410. target_compile_definitions(lib1 INTERFACE
  411. $<$<STREQUAL:$<TARGET_PROPERTY:TYPE>,EXECUTABLE>:LIB1_WITH_EXE>
  412. $<$<STREQUAL:$<TARGET_PROPERTY:TYPE>,SHARED_LIBRARY>:LIB1_WITH_SHARED_LIB>
  413. $<$<TARGET_POLICY:CMP0041>:CONSUMER_CMP0041_NEW>
  414. )
  415. add_executable(exe1 exe1.cpp)
  416. target_link_libraries(exe1 lib1)
  417. cmake_policy(SET CMP0041 NEW)
  418. add_library(shared_lib shared_lib.cpp)
  419. target_link_libraries(shared_lib lib1)
  420. The ``exe1`` executable will be compiled with ``-DLIB1_WITH_EXE``, while the
  421. ``shared_lib`` shared library will be compiled with ``-DLIB1_WITH_SHARED_LIB``
  422. and ``-DCONSUMER_CMP0041_NEW``, because policy :policy:`CMP0041` is
  423. ``NEW`` at the point where the ``shared_lib`` target is created.
  424. The ``BUILD_INTERFACE`` expression wraps requirements which are only used when
  425. consumed from a target in the same buildsystem, or when consumed from a target
  426. exported to the build directory using the :command:`export` command. The
  427. ``INSTALL_INTERFACE`` expression wraps requirements which are only used when
  428. consumed from a target which has been installed and exported with the
  429. :command:`install(EXPORT)` command:
  430. .. code-block:: cmake
  431. add_library(ClimbingStats climbingstats.cpp)
  432. target_compile_definitions(ClimbingStats INTERFACE
  433. $<BUILD_INTERFACE:ClimbingStats_FROM_BUILD_LOCATION>
  434. $<INSTALL_INTERFACE:ClimbingStats_FROM_INSTALLED_LOCATION>
  435. )
  436. install(TARGETS ClimbingStats EXPORT libExport ${InstallArgs})
  437. install(EXPORT libExport NAMESPACE Upstream::
  438. DESTINATION lib/cmake/ClimbingStats)
  439. export(EXPORT libExport NAMESPACE Upstream::)
  440. add_executable(exe1 exe1.cpp)
  441. target_link_libraries(exe1 ClimbingStats)
  442. In this case, the ``exe1`` executable will be compiled with
  443. ``-DClimbingStats_FROM_BUILD_LOCATION``. The exporting commands generate
  444. :prop_tgt:`IMPORTED` targets with either the ``INSTALL_INTERFACE`` or the
  445. ``BUILD_INTERFACE`` omitted, and the ``*_INTERFACE`` marker stripped away.
  446. A separate project consuming the ``ClimbingStats`` package would contain:
  447. .. code-block:: cmake
  448. find_package(ClimbingStats REQUIRED)
  449. add_executable(Downstream main.cpp)
  450. target_link_libraries(Downstream Upstream::ClimbingStats)
  451. Depending on whether the ``ClimbingStats`` package was used from the build
  452. location or the install location, the ``Downstream`` target would be compiled
  453. with either ``-DClimbingStats_FROM_BUILD_LOCATION`` or
  454. ``-DClimbingStats_FROM_INSTALL_LOCATION``. For more about packages and
  455. exporting see the :manual:`cmake-packages(7)` manual.
  456. .. _`Include Directories and Usage Requirements`:
  457. Include Directories and Usage Requirements
  458. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  459. Include directories require some special consideration when specified as usage
  460. requirements and when used with generator expressions. The
  461. :command:`target_include_directories` command accepts both relative and
  462. absolute include directories:
  463. .. code-block:: cmake
  464. add_library(lib1 lib1.cpp)
  465. target_include_directories(lib1 PRIVATE
  466. /absolute/path
  467. relative/path
  468. )
  469. Relative paths are interpreted relative to the source directory where the
  470. command appears. Relative paths are not allowed in the
  471. :prop_tgt:`INTERFACE_INCLUDE_DIRECTORIES` of :prop_tgt:`IMPORTED` targets.
  472. In cases where a non-trivial generator expression is used, the
  473. ``INSTALL_PREFIX`` expression may be used within the argument of an
  474. ``INSTALL_INTERFACE`` expression. It is a replacement marker which
  475. expands to the installation prefix when imported by a consuming project.
  476. Include directories usage requirements commonly differ between the build-tree
  477. and the install-tree. The ``BUILD_INTERFACE`` and ``INSTALL_INTERFACE``
  478. generator expressions can be used to describe separate usage requirements
  479. based on the usage location. Relative paths are allowed within the
  480. ``INSTALL_INTERFACE`` expression and are interpreted relative to the
  481. installation prefix. For example:
  482. .. code-block:: cmake
  483. add_library(ClimbingStats climbingstats.cpp)
  484. target_include_directories(ClimbingStats INTERFACE
  485. $<BUILD_INTERFACE:${CMAKE_CURRENT_BINARY_DIR}/generated>
  486. $<INSTALL_INTERFACE:/absolute/path>
  487. $<INSTALL_INTERFACE:relative/path>
  488. $<INSTALL_INTERFACE:$<INSTALL_PREFIX>/$<CONFIG>/generated>
  489. )
  490. Two convenience APIs are provided relating to include directories usage
  491. requirements. The :variable:`CMAKE_INCLUDE_CURRENT_DIR_IN_INTERFACE` variable
  492. may be enabled, with an equivalent effect to:
  493. .. code-block:: cmake
  494. set_property(TARGET tgt APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES
  495. $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR};${CMAKE_CURRENT_BINARY_DIR}>
  496. )
  497. for each target affected. The convenience for installed targets is
  498. an ``INCLUDES DESTINATION`` component with the :command:`install(TARGETS)`
  499. command:
  500. .. code-block:: cmake
  501. install(TARGETS foo bar bat EXPORT tgts ${dest_args}
  502. INCLUDES DESTINATION include
  503. )
  504. install(EXPORT tgts ${other_args})
  505. install(FILES ${headers} DESTINATION include)
  506. This is equivalent to appending ``${CMAKE_INSTALL_PREFIX}/include`` to the
  507. :prop_tgt:`INTERFACE_INCLUDE_DIRECTORIES` of each of the installed
  508. :prop_tgt:`IMPORTED` targets when generated by :command:`install(EXPORT)`.
  509. When the :prop_tgt:`INTERFACE_INCLUDE_DIRECTORIES` of an
  510. :ref:`imported target <Imported targets>` is consumed, the entries in the
  511. property are treated as ``SYSTEM`` include directories, as if they were
  512. listed in the :prop_tgt:`INTERFACE_SYSTEM_INCLUDE_DIRECTORIES` of the
  513. dependency. This can result in omission of compiler warnings for headers
  514. found in those directories. This behavior for :ref:`imported targets` may
  515. be controlled with the :prop_tgt:`NO_SYSTEM_FROM_IMPORTED` target property.
  516. If a binary target is linked transitively to a Mac OX framework, the
  517. ``Headers`` directory of the framework is also treated as a usage requirement.
  518. This has the same effect as passing the framework directory as an include
  519. directory.
  520. Link Libraries and Generator Expressions
  521. ----------------------------------------
  522. Like build specifications, :prop_tgt:`link libraries <LINK_LIBRARIES>` may be
  523. specified with generator expression conditions. However, as consumption of
  524. usage requirements is based on collection from linked dependencies, there is
  525. an additional limitation that the link dependencies must form a "directed
  526. acyclic graph". That is, if linking to a target is dependent on the value of
  527. a target property, that target property may not be dependent on the linked
  528. dependencies:
  529. .. code-block:: cmake
  530. add_library(lib1 lib1.cpp)
  531. add_library(lib2 lib2.cpp)
  532. target_link_libraries(lib1 PUBLIC
  533. $<$<TARGET_PROPERTY:POSITION_INDEPENDENT_CODE>:lib2>
  534. )
  535. add_library(lib3 lib3.cpp)
  536. set_property(TARGET lib3 PROPERTY INTERFACE_POSITION_INDEPENDENT_CODE ON)
  537. add_executable(exe1 exe1.cpp)
  538. target_link_libraries(exe1 lib1 lib3)
  539. As the value of the :prop_tgt:`POSITION_INDEPENDENT_CODE` property of
  540. the ``exe1`` target is dependent on the linked libraries (``lib3``), and the
  541. edge of linking ``exe1`` is determined by the same
  542. :prop_tgt:`POSITION_INDEPENDENT_CODE` property, the dependency graph above
  543. contains a cycle. :manual:`cmake(1)` issues a diagnostic in this case.
  544. .. _`Output Artifacts`:
  545. Output Artifacts
  546. ----------------
  547. The buildsystem targets created by the :command:`add_library` and
  548. :command:`add_executable` commands create rules to create binary outputs.
  549. The exact output location of the binaries can only be determined at
  550. generate-time because it can depend on the build-configuration and the
  551. link-language of linked dependencies etc. ``TARGET_FILE``,
  552. ``TARGET_LINKER_FILE`` and related expressions can be used to access the
  553. name and location of generated binaries. These expressions do not work
  554. for ``OBJECT`` libraries however, as there is no single file generated
  555. by such libraries which is relevant to the expressions.
  556. There are three kinds of output artifacts that may be build by targets
  557. as detailed in the following sections. Their classification differs
  558. between DLL platforms and non-DLL platforms. All Windows-based
  559. systems including Cygwin are DLL platforms.
  560. .. _`Runtime Output Artifacts`:
  561. Runtime Output Artifacts
  562. ^^^^^^^^^^^^^^^^^^^^^^^^
  563. A *runtime* output artifact of a buildsystem target may be:
  564. * The executable file (e.g. ``.exe``) of an executable target
  565. created by the :command:`add_executable` command.
  566. * On DLL platforms: the executable file (e.g. ``.dll``) of a shared
  567. library target created by the :command:`add_library` command
  568. with the ``SHARED`` option.
  569. The :prop_tgt:`RUNTIME_OUTPUT_DIRECTORY` and :prop_tgt:`RUNTIME_OUTPUT_NAME`
  570. target properties may be used to control runtime output artifact locations
  571. and names in the build tree.
  572. .. _`Library Output Artifacts`:
  573. Library Output Artifacts
  574. ^^^^^^^^^^^^^^^^^^^^^^^^
  575. A *library* output artifact of a buildsystem target may be:
  576. * The loadable module file (e.g. ``.dll`` or ``.so``) of a module
  577. library target created by the :command:`add_library` command
  578. with the ``MODULE`` option.
  579. * On non-DLL platforms: the shared library file (e.g. ``.so`` or ``.dylib``)
  580. of a shared shared library target created by the :command:`add_library`
  581. command with the ``SHARED`` option.
  582. The :prop_tgt:`LIBRARY_OUTPUT_DIRECTORY` and :prop_tgt:`LIBRARY_OUTPUT_NAME`
  583. target properties may be used to control library output artifact locations
  584. and names in the build tree.
  585. .. _`Archive Output Artifacts`:
  586. Archive Output Artifacts
  587. ^^^^^^^^^^^^^^^^^^^^^^^^
  588. An *archive* output artifact of a buildsystem target may be:
  589. * The static library file (e.g. ``.lib`` or ``.a``) of a static
  590. library target created by the :command:`add_library` command
  591. with the ``STATIC`` option.
  592. * On DLL platforms: the import library file (e.g. ``.lib``) of a shared
  593. library target created by the :command:`add_library` command
  594. with the ``SHARED`` option. This file is only guaranteed to exist if
  595. the library exports at least one unmanaged symbol.
  596. * On DLL platforms: the import library file (e.g. ``.lib``) of an
  597. executable target created by the :command:`add_executable` command
  598. when its :prop_tgt:`ENABLE_EXPORTS` target property is set.
  599. The :prop_tgt:`ARCHIVE_OUTPUT_DIRECTORY` and :prop_tgt:`ARCHIVE_OUTPUT_NAME`
  600. target properties may be used to control archive output artifact locations
  601. and names in the build tree.
  602. Directory-Scoped Commands
  603. -------------------------
  604. The :command:`target_include_directories`,
  605. :command:`target_compile_definitions` and
  606. :command:`target_compile_options` commands have an effect on only one
  607. target at a time. The commands :command:`add_definitions`,
  608. :command:`add_compile_options` and :command:`include_directories` have
  609. a similar function, but operate at directory scope instead of target
  610. scope for convenience.
  611. Pseudo Targets
  612. ==============
  613. Some target types do not represent outputs of the buildsystem, but only inputs
  614. such as external dependencies, aliases or other non-build artifacts. Pseudo
  615. targets are not represented in the generated buildsystem.
  616. .. _`Imported Targets`:
  617. Imported Targets
  618. ----------------
  619. An :prop_tgt:`IMPORTED` target represents a pre-existing dependency. Usually
  620. such targets are defined by an upstream package and should be treated as
  621. immutable. It is not possible to use an :prop_tgt:`IMPORTED` target in the
  622. left-hand-side of the :command:`target_compile_definitions`,
  623. :command:`target_include_directories`, :command:`target_compile_options` or
  624. :command:`target_link_libraries` commands, as that would be an attempt to
  625. modify it. :prop_tgt:`IMPORTED` targets are designed to be used only in the
  626. right-hand-side of those commands.
  627. :prop_tgt:`IMPORTED` targets may have the same usage requirement properties
  628. populated as binary targets, such as
  629. :prop_tgt:`INTERFACE_INCLUDE_DIRECTORIES`,
  630. :prop_tgt:`INTERFACE_COMPILE_DEFINITIONS`,
  631. :prop_tgt:`INTERFACE_COMPILE_OPTIONS`,
  632. :prop_tgt:`INTERFACE_LINK_LIBRARIES`, and
  633. :prop_tgt:`INTERFACE_POSITION_INDEPENDENT_CODE`.
  634. The :prop_tgt:`LOCATION` may also be read from an IMPORTED target, though there
  635. is rarely reason to do so. Commands such as :command:`add_custom_command` can
  636. transparently use an :prop_tgt:`IMPORTED` :prop_tgt:`EXECUTABLE <TYPE>` target
  637. as a ``COMMAND`` executable.
  638. The scope of the definition of an :prop_tgt:`IMPORTED` target is the directory
  639. where it was defined. It may be accessed and used from subdirectories, but
  640. not from parent directories or sibling directories. The scope is similar to
  641. the scope of a cmake variable.
  642. It is also possible to define a ``GLOBAL`` :prop_tgt:`IMPORTED` target which is
  643. accessible globally in the buildsystem.
  644. See the :manual:`cmake-packages(7)` manual for more on creating packages
  645. with :prop_tgt:`IMPORTED` targets.
  646. .. _`Alias Targets`:
  647. Alias Targets
  648. -------------
  649. An ``ALIAS`` target is a name which may be used interchangably with
  650. a binary target name in read-only contexts. A primary use-case for ``ALIAS``
  651. targets is for example or unit test executables accompanying a library, which
  652. may be part of the same buildsystem or built separately based on user
  653. configuration.
  654. .. code-block:: cmake
  655. add_library(lib1 lib1.cpp)
  656. install(TARGETS lib1 EXPORT lib1Export ${dest_args})
  657. install(EXPORT lib1Export NAMESPACE Upstream:: ${other_args})
  658. add_library(Upstream::lib1 ALIAS lib1)
  659. In another directory, we can link unconditionally to the ``Upstream::lib1``
  660. target, which may be an :prop_tgt:`IMPORTED` target from a package, or an
  661. ``ALIAS`` target if built as part of the same buildsystem.
  662. .. code-block:: cmake
  663. if (NOT TARGET Upstream::lib1)
  664. find_package(lib1 REQUIRED)
  665. endif()
  666. add_executable(exe1 exe1.cpp)
  667. target_link_libraries(exe1 Upstream::lib1)
  668. ``ALIAS`` targets are not mutable, installable or exportable. They are
  669. entirely local to the buildsystem description. A name can be tested for
  670. whether it is an ``ALIAS`` name by reading the :prop_tgt:`ALIASED_TARGET`
  671. property from it:
  672. .. code-block:: cmake
  673. get_target_property(_aliased Upstream::lib1 ALIASED_TARGET)
  674. if(_aliased)
  675. message(STATUS "The name Upstream::lib1 is an ALIAS for ${_aliased}.")
  676. endif()
  677. .. _`Interface Libraries`:
  678. Interface Libraries
  679. -------------------
  680. An ``INTERFACE`` target has no :prop_tgt:`LOCATION` and is mutable, but is
  681. otherwise similar to an :prop_tgt:`IMPORTED` target.
  682. It may specify usage requirements such as
  683. :prop_tgt:`INTERFACE_INCLUDE_DIRECTORIES`,
  684. :prop_tgt:`INTERFACE_COMPILE_DEFINITIONS`,
  685. :prop_tgt:`INTERFACE_COMPILE_OPTIONS`,
  686. :prop_tgt:`INTERFACE_LINK_LIBRARIES`,
  687. :prop_tgt:`INTERFACE_SOURCES`,
  688. and :prop_tgt:`INTERFACE_POSITION_INDEPENDENT_CODE`.
  689. Only the ``INTERFACE`` modes of the :command:`target_include_directories`,
  690. :command:`target_compile_definitions`, :command:`target_compile_options`,
  691. :command:`target_sources`, and :command:`target_link_libraries` commands
  692. may be used with ``INTERFACE`` libraries.
  693. A primary use-case for ``INTERFACE`` libraries is header-only libraries.
  694. .. code-block:: cmake
  695. add_library(Eigen INTERFACE)
  696. target_include_directories(Eigen INTERFACE
  697. $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>
  698. $<INSTALL_INTERFACE:include/Eigen>
  699. )
  700. add_executable(exe1 exe1.cpp)
  701. target_link_libraries(exe1 Eigen)
  702. Here, the usage requirements from the ``Eigen`` target are consumed and used
  703. when compiling, but it has no effect on linking.
  704. Another use-case is to employ an entirely target-focussed design for usage
  705. requirements:
  706. .. code-block:: cmake
  707. add_library(pic_on INTERFACE)
  708. set_property(TARGET pic_on PROPERTY INTERFACE_POSITION_INDEPENDENT_CODE ON)
  709. add_library(pic_off INTERFACE)
  710. set_property(TARGET pic_off PROPERTY INTERFACE_POSITION_INDEPENDENT_CODE OFF)
  711. add_library(enable_rtti INTERFACE)
  712. target_compile_options(enable_rtti INTERFACE
  713. $<$<OR:$<COMPILER_ID:GNU>,$<COMPILER_ID:Clang>>:-rtti>
  714. )
  715. add_executable(exe1 exe1.cpp)
  716. target_link_libraries(exe1 pic_on enable_rtti)
  717. This way, the build specification of ``exe1`` is expressed entirely as linked
  718. targets, and the complexity of compiler-specific flags is encapsulated in an
  719. ``INTERFACE`` library target.
  720. The properties permitted to be set on or read from an ``INTERFACE`` library
  721. are:
  722. * Properties matching ``INTERFACE_*``
  723. * Built-in properties matching ``COMPATIBLE_INTERFACE_*``
  724. * ``EXPORT_NAME``
  725. * ``IMPORTED``
  726. * ``NAME``
  727. * Properties matching ``MAP_IMPORTED_CONFIG_*``
  728. ``INTERFACE`` libraries may be installed and exported. Any content they refer
  729. to must be installed separately:
  730. .. code-block:: cmake
  731. add_library(Eigen INTERFACE)
  732. target_include_directories(Eigen INTERFACE
  733. $<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/src>
  734. $<INSTALL_INTERFACE:include/Eigen>
  735. )
  736. install(TARGETS Eigen EXPORT eigenExport)
  737. install(EXPORT eigenExport NAMESPACE Upstream::
  738. DESTINATION lib/cmake/Eigen
  739. )
  740. install(FILES
  741. ${CMAKE_CURRENT_SOURCE_DIR}/src/eigen.h
  742. ${CMAKE_CURRENT_SOURCE_DIR}/src/vector.h
  743. ${CMAKE_CURRENT_SOURCE_DIR}/src/matrix.h
  744. DESTINATION include/Eigen
  745. )