add_custom_command.rst 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290
  1. add_custom_command
  2. ------------------
  3. Add a custom build rule to the generated build system.
  4. There are two main signatures for ``add_custom_command``.
  5. Generating Files
  6. ^^^^^^^^^^^^^^^^
  7. The first signature is for adding a custom command to produce an output:
  8. .. code-block:: cmake
  9. add_custom_command(OUTPUT output1 [output2 ...]
  10. COMMAND command1 [ARGS] [args1...]
  11. [COMMAND command2 [ARGS] [args2...] ...]
  12. [MAIN_DEPENDENCY depend]
  13. [DEPENDS [depends...]]
  14. [BYPRODUCTS [files...]]
  15. [IMPLICIT_DEPENDS <lang1> depend1
  16. [<lang2> depend2] ...]
  17. [WORKING_DIRECTORY dir]
  18. [COMMENT comment]
  19. [DEPFILE depfile]
  20. [JOB_POOL job_pool]
  21. [VERBATIM] [APPEND] [USES_TERMINAL]
  22. [COMMAND_EXPAND_LISTS])
  23. This defines a command to generate specified ``OUTPUT`` file(s).
  24. A target created in the same directory (``CMakeLists.txt`` file)
  25. that specifies any output of the custom command as a source file
  26. is given a rule to generate the file using the command at build time.
  27. Do not list the output in more than one independent target that
  28. may build in parallel or the two instances of the rule may conflict
  29. (instead use the :command:`add_custom_target` command to drive the
  30. command and make the other targets depend on that one).
  31. In makefile terms this creates a new target in the following form::
  32. OUTPUT: MAIN_DEPENDENCY DEPENDS
  33. COMMAND
  34. The options are:
  35. ``APPEND``
  36. Append the ``COMMAND`` and ``DEPENDS`` option values to the custom
  37. command for the first output specified. There must have already
  38. been a previous call to this command with the same output.
  39. The ``COMMENT``, ``MAIN_DEPENDENCY``, and ``WORKING_DIRECTORY``
  40. options are currently ignored when APPEND is given, but may be
  41. used in the future.
  42. ``BYPRODUCTS``
  43. Specify the files the command is expected to produce but whose
  44. modification time may or may not be newer than the dependencies.
  45. If a byproduct name is a relative path it will be interpreted
  46. relative to the build tree directory corresponding to the
  47. current source directory.
  48. Each byproduct file will be marked with the :prop_sf:`GENERATED`
  49. source file property automatically.
  50. Explicit specification of byproducts is supported by the
  51. :generator:`Ninja` generator to tell the ``ninja`` build tool
  52. how to regenerate byproducts when they are missing. It is
  53. also useful when other build rules (e.g. custom commands)
  54. depend on the byproducts. Ninja requires a build rule for any
  55. generated file on which another rule depends even if there are
  56. order-only dependencies to ensure the byproducts will be
  57. available before their dependents build.
  58. The :ref:`Makefile Generators` will remove ``BYPRODUCTS`` and other
  59. :prop_sf:`GENERATED` files during ``make clean``.
  60. ``COMMAND``
  61. Specify the command-line(s) to execute at build time.
  62. If more than one ``COMMAND`` is specified they will be executed in order,
  63. but *not* necessarily composed into a stateful shell or batch script.
  64. (To run a full script, use the :command:`configure_file` command or the
  65. :command:`file(GENERATE)` command to create it, and then specify
  66. a ``COMMAND`` to launch it.)
  67. The optional ``ARGS`` argument is for backward compatibility and
  68. will be ignored.
  69. If ``COMMAND`` specifies an executable target name (created by the
  70. :command:`add_executable` command), it will automatically be replaced
  71. by the location of the executable created at build time if either of
  72. the following is true:
  73. * The target is not being cross-compiled (i.e. the
  74. :variable:`CMAKE_CROSSCOMPILING` variable is not set to true).
  75. * The target is being cross-compiled and an emulator is provided (i.e.
  76. its :prop_tgt:`CROSSCOMPILING_EMULATOR` target property is set).
  77. In this case, the contents of :prop_tgt:`CROSSCOMPILING_EMULATOR` will be
  78. prepended to the command before the location of the target executable.
  79. If neither of the above conditions are met, it is assumed that the
  80. command name is a program to be found on the ``PATH`` at build time.
  81. Arguments to ``COMMAND`` may use
  82. :manual:`generator expressions <cmake-generator-expressions(7)>`.
  83. Use the ``TARGET_FILE`` generator expression to refer to the location of
  84. a target later in the command line (i.e. as a command argument rather
  85. than as the command to execute).
  86. Whenever one of the following target based generator expressions are used as
  87. a command to execute or is mentioned in a command argument, a target-level
  88. dependency will be added automatically so that the mentioned target will be
  89. built before any target using this custom command
  90. (see policy :policy:`CMP0112`).
  91. * ``TARGET_FILE``
  92. * ``TARGET_LINKER_FILE``
  93. * ``TARGET_SONAME_FILE``
  94. * ``TARGET_PDB_FILE``
  95. This target-level dependency does NOT add a file-level dependency that would
  96. cause the custom command to re-run whenever the executable is recompiled.
  97. List target names with the ``DEPENDS`` option to add such file-level
  98. dependencies.
  99. ``COMMENT``
  100. Display the given message before the commands are executed at
  101. build time.
  102. ``DEPENDS``
  103. Specify files on which the command depends. Each argument is converted
  104. to a dependency as follows:
  105. 1. If the argument is the name of a target (created by the
  106. :command:`add_custom_target`, :command:`add_executable`, or
  107. :command:`add_library` command) a target-level dependency is
  108. created to make sure the target is built before any target
  109. using this custom command. Additionally, if the target is an
  110. executable or library, a file-level dependency is created to
  111. cause the custom command to re-run whenever the target is
  112. recompiled.
  113. 2. If the argument is an absolute path, a file-level dependency
  114. is created on that path.
  115. 3. If the argument is the name of a source file that has been
  116. added to a target or on which a source file property has been set,
  117. a file-level dependency is created on that source file.
  118. 4. If the argument is a relative path and it exists in the current
  119. source directory, a file-level dependency is created on that
  120. file in the current source directory.
  121. 5. Otherwise, a file-level dependency is created on that path relative
  122. to the current binary directory.
  123. If any dependency is an ``OUTPUT`` of another custom command in the same
  124. directory (``CMakeLists.txt`` file), CMake automatically brings the other
  125. custom command into the target in which this command is built.
  126. A target-level dependency is added if any dependency is listed as
  127. ``BYPRODUCTS`` of a target or any of its build events in the same
  128. directory to ensure the byproducts will be available.
  129. If ``DEPENDS`` is not specified, the command will run whenever
  130. the ``OUTPUT`` is missing; if the command does not actually
  131. create the ``OUTPUT``, the rule will always run.
  132. Arguments to ``DEPENDS`` may use
  133. :manual:`generator expressions <cmake-generator-expressions(7)>`.
  134. ``COMMAND_EXPAND_LISTS``
  135. Lists in ``COMMAND`` arguments will be expanded, including those
  136. created with
  137. :manual:`generator expressions <cmake-generator-expressions(7)>`,
  138. allowing ``COMMAND`` arguments such as
  139. ``${CC} "-I$<JOIN:$<TARGET_PROPERTY:foo,INCLUDE_DIRECTORIES>,;-I>" foo.cc``
  140. to be properly expanded.
  141. ``IMPLICIT_DEPENDS``
  142. Request scanning of implicit dependencies of an input file.
  143. The language given specifies the programming language whose
  144. corresponding dependency scanner should be used.
  145. Currently only ``C`` and ``CXX`` language scanners are supported.
  146. The language has to be specified for every file in the
  147. ``IMPLICIT_DEPENDS`` list. Dependencies discovered from the
  148. scanning are added to those of the custom command at build time.
  149. Note that the ``IMPLICIT_DEPENDS`` option is currently supported
  150. only for Makefile generators and will be ignored by other generators.
  151. ``JOB_POOL``
  152. Specify a :prop_gbl:`pool <JOB_POOLS>` for the :generator:`Ninja`
  153. generator. Incompatible with ``USES_TERMINAL``, which implies
  154. the ``console`` pool.
  155. Using a pool that is not defined by :prop_gbl:`JOB_POOLS` causes
  156. an error by ninja at build time.
  157. ``MAIN_DEPENDENCY``
  158. Specify the primary input source file to the command. This is
  159. treated just like any value given to the ``DEPENDS`` option
  160. but also suggests to Visual Studio generators where to hang
  161. the custom command. Each source file may have at most one command
  162. specifying it as its main dependency. A compile command (i.e. for a
  163. library or an executable) counts as an implicit main dependency which
  164. gets silently overwritten by a custom command specification.
  165. ``OUTPUT``
  166. Specify the output files the command is expected to produce.
  167. If an output name is a relative path it will be interpreted
  168. relative to the build tree directory corresponding to the
  169. current source directory.
  170. Each output file will be marked with the :prop_sf:`GENERATED`
  171. source file property automatically.
  172. If the output of the custom command is not actually created
  173. as a file on disk it should be marked with the :prop_sf:`SYMBOLIC`
  174. source file property.
  175. ``USES_TERMINAL``
  176. The command will be given direct access to the terminal if possible.
  177. With the :generator:`Ninja` generator, this places the command in
  178. the ``console`` :prop_gbl:`pool <JOB_POOLS>`.
  179. ``VERBATIM``
  180. All arguments to the commands will be escaped properly for the
  181. build tool so that the invoked command receives each argument
  182. unchanged. Note that one level of escapes is still used by the
  183. CMake language processor before add_custom_command even sees the
  184. arguments. Use of ``VERBATIM`` is recommended as it enables
  185. correct behavior. When ``VERBATIM`` is not given the behavior
  186. is platform specific because there is no protection of
  187. tool-specific special characters.
  188. ``WORKING_DIRECTORY``
  189. Execute the command with the given current working directory.
  190. If it is a relative path it will be interpreted relative to the
  191. build tree directory corresponding to the current source directory.
  192. Arguments to ``WORKING_DIRECTORY`` may use
  193. :manual:`generator expressions <cmake-generator-expressions(7)>`.
  194. ``DEPFILE``
  195. Specify a ``.d`` depfile for the :generator:`Ninja` generator.
  196. A ``.d`` file holds dependencies usually emitted by the custom
  197. command itself.
  198. Using ``DEPFILE`` with other generators than Ninja is an error.
  199. Build Events
  200. ^^^^^^^^^^^^
  201. The second signature adds a custom command to a target such as a
  202. library or executable. This is useful for performing an operation
  203. before or after building the target. The command becomes part of the
  204. target and will only execute when the target itself is built. If the
  205. target is already built, the command will not execute.
  206. .. code-block:: cmake
  207. add_custom_command(TARGET <target>
  208. PRE_BUILD | PRE_LINK | POST_BUILD
  209. COMMAND command1 [ARGS] [args1...]
  210. [COMMAND command2 [ARGS] [args2...] ...]
  211. [BYPRODUCTS [files...]]
  212. [WORKING_DIRECTORY dir]
  213. [COMMENT comment]
  214. [VERBATIM] [USES_TERMINAL]
  215. [COMMAND_EXPAND_LISTS])
  216. This defines a new command that will be associated with building the
  217. specified ``<target>``. The ``<target>`` must be defined in the current
  218. directory; targets defined in other directories may not be specified.
  219. When the command will happen is determined by which
  220. of the following is specified:
  221. ``PRE_BUILD``
  222. On :ref:`Visual Studio Generators`, run before any other rules are
  223. executed within the target.
  224. On other generators, run just before ``PRE_LINK`` commands.
  225. ``PRE_LINK``
  226. Run after sources have been compiled but before linking the binary
  227. or running the librarian or archiver tool of a static library.
  228. This is not defined for targets created by the
  229. :command:`add_custom_target` command.
  230. ``POST_BUILD``
  231. Run after all other rules within the target have been executed.
  232. .. note::
  233. Because generator expressions can be used in custom commands,
  234. it is possible to define ``COMMAND`` lines or whole custom commands
  235. which evaluate to empty strings for certain configurations.
  236. For **Visual Studio 2010 (and newer)** generators these command
  237. lines or custom commands will be omitted for the specific
  238. configuration and no "empty-string-command" will be added.
  239. This allows to add individual build events for every configuration.