if.rst 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375
  1. if
  2. --
  3. Conditionally execute a group of commands.
  4. Synopsis
  5. ^^^^^^^^
  6. .. code-block:: cmake
  7. if(<condition>)
  8. <commands>
  9. elseif(<condition>) # optional block, can be repeated
  10. <commands>
  11. else() # optional block
  12. <commands>
  13. endif()
  14. Evaluates the ``condition`` argument of the ``if`` clause according to the
  15. `Condition syntax`_ described below. If the result is true, then the
  16. ``commands`` in the ``if`` block are executed.
  17. Otherwise, optional ``elseif`` blocks are processed in the same way.
  18. Finally, if no ``condition`` is true, ``commands`` in the optional ``else``
  19. block are executed.
  20. Per legacy, the :command:`else` and :command:`endif` commands admit
  21. an optional ``<condition>`` argument.
  22. If used, it must be a verbatim
  23. repeat of the argument of the opening
  24. ``if`` command.
  25. .. _`Condition Syntax`:
  26. Condition Syntax
  27. ^^^^^^^^^^^^^^^^
  28. The following syntax applies to the ``condition`` argument of
  29. the ``if``, ``elseif`` and :command:`while` clauses.
  30. Compound conditions are evaluated in the following order of precedence:
  31. Innermost parentheses are evaluated first. Next come unary tests such
  32. as `EXISTS`_, `COMMAND`_, and `DEFINED`_. Then binary tests such as
  33. `EQUAL`_, `LESS`_, `LESS_EQUAL`_, `GREATER`_, `GREATER_EQUAL`_,
  34. `STREQUAL`_, `STRLESS`_, `STRLESS_EQUAL`_, `STRGREATER`_,
  35. `STRGREATER_EQUAL`_, `VERSION_EQUAL`_, `VERSION_LESS`_,
  36. `VERSION_LESS_EQUAL`_, `VERSION_GREATER`_, `VERSION_GREATER_EQUAL`_,
  37. and `MATCHES`_. Then the boolean operators in the order `NOT`_, `AND`_,
  38. and finally `OR`_.
  39. Basic Expressions
  40. """""""""""""""""
  41. ``if(<constant>)``
  42. True if the constant is ``1``, ``ON``, ``YES``, ``TRUE``, ``Y``,
  43. or a non-zero number. False if the constant is ``0``, ``OFF``,
  44. ``NO``, ``FALSE``, ``N``, ``IGNORE``, ``NOTFOUND``, the empty string,
  45. or ends in the suffix ``-NOTFOUND``. Named boolean constants are
  46. case-insensitive. If the argument is not one of these specific
  47. constants, it is treated as a variable or string (see `Variable Expansion`_
  48. further below) and one of the following two forms applies.
  49. ``if(<variable>)``
  50. True if given a variable that is defined to a value that is not a false
  51. constant. False otherwise, including if the variable is undefined.
  52. Note that macro arguments are not variables.
  53. Environment variables also cannot be tested this way, e.g.
  54. ``if(ENV{some_var})`` will always evaluate to false.
  55. ``if(<string>)``
  56. A quoted string always evaluates to false unless:
  57. * The string's value is one of the true constants, or
  58. * Policy :policy:`CMP0054` is not set to ``NEW`` and the string's value
  59. happens to be a variable name that is affected by :policy:`CMP0054`'s
  60. behavior.
  61. Logic Operators
  62. """""""""""""""
  63. .. _NOT:
  64. ``if(NOT <condition>)``
  65. True if the condition is not true.
  66. .. _AND:
  67. ``if(<cond1> AND <cond2>)``
  68. True if both conditions would be considered true individually.
  69. .. _OR:
  70. ``if(<cond1> OR <cond2>)``
  71. True if either condition would be considered true individually.
  72. ``if((condition) AND (condition OR (condition)))``
  73. The conditions inside the parenthesis are evaluated first and then
  74. the remaining condition is evaluated as in the other examples.
  75. Where there are nested parenthesis the innermost are evaluated as part
  76. of evaluating the condition that contains them.
  77. Existence Checks
  78. """"""""""""""""
  79. .. _COMMAND:
  80. ``if(COMMAND command-name)``
  81. True if the given name is a command, macro or function that can be
  82. invoked.
  83. ``if(POLICY policy-id)``
  84. True if the given name is an existing policy (of the form ``CMP<NNNN>``).
  85. ``if(TARGET target-name)``
  86. True if the given name is an existing logical target name created
  87. by a call to the :command:`add_executable`, :command:`add_library`,
  88. or :command:`add_custom_target` command that has already been invoked
  89. (in any directory).
  90. ``if(TEST test-name)``
  91. .. versionadded:: 3.3
  92. True if the given name is an existing test name created by the
  93. :command:`add_test` command.
  94. .. _DEFINED:
  95. ``if(DEFINED <name>|CACHE{<name>}|ENV{<name>})``
  96. True if a variable, cache variable or environment variable
  97. with given ``<name>`` is defined. The value of the variable
  98. does not matter. Note that macro arguments are not variables.
  99. .. versionadded:: 3.14
  100. Added support for ``CACHE{<name>}`` variables.
  101. ``if(<variable|string> IN_LIST <variable>)``
  102. .. versionadded:: 3.3
  103. True if the given element is contained in the named list variable.
  104. File Operations
  105. """""""""""""""
  106. .. _EXISTS:
  107. ``if(EXISTS path-to-file-or-directory)``
  108. True if the named file or directory exists. Behavior is well-defined
  109. only for explicit full paths (a leading ``~/`` is not expanded as
  110. a home directory and is considered a relative path).
  111. Resolves symbolic links, i.e. if the named file or directory is a
  112. symbolic link, returns true if the target of the symbolic link exists.
  113. ``if(file1 IS_NEWER_THAN file2)``
  114. True if ``file1`` is newer than ``file2`` or if one of the two files doesn't
  115. exist. Behavior is well-defined only for full paths. If the file
  116. time stamps are exactly the same, an ``IS_NEWER_THAN`` comparison returns
  117. true, so that any dependent build operations will occur in the event
  118. of a tie. This includes the case of passing the same file name for
  119. both file1 and file2.
  120. ``if(IS_DIRECTORY path-to-directory)``
  121. True if the given name is a directory. Behavior is well-defined only
  122. for full paths.
  123. ``if(IS_SYMLINK file-name)``
  124. True if the given name is a symbolic link. Behavior is well-defined
  125. only for full paths.
  126. ``if(IS_ABSOLUTE path)``
  127. True if the given path is an absolute path. Note the following special
  128. cases:
  129. * An empty ``path`` evaluates to false.
  130. * On Windows hosts, any ``path`` that begins with a drive letter and colon
  131. (e.g. ``C:``), a forward slash or a backslash will evaluate to true.
  132. This means a path like ``C:no\base\dir`` will evaluate to true, even
  133. though the non-drive part of the path is relative.
  134. * On non-Windows hosts, any ``path`` that begins with a tilde (``~``)
  135. evaluates to true.
  136. Comparisons
  137. """""""""""
  138. .. _MATCHES:
  139. ``if(<variable|string> MATCHES regex)``
  140. True if the given string or variable's value matches the given regular
  141. expression. See :ref:`Regex Specification` for regex format.
  142. .. versionadded:: 3.9
  143. ``()`` groups are captured in :variable:`CMAKE_MATCH_<n>` variables.
  144. .. _LESS:
  145. ``if(<variable|string> LESS <variable|string>)``
  146. True if the given string or variable's value is a valid number and less
  147. than that on the right.
  148. .. _GREATER:
  149. ``if(<variable|string> GREATER <variable|string>)``
  150. True if the given string or variable's value is a valid number and greater
  151. than that on the right.
  152. .. _EQUAL:
  153. ``if(<variable|string> EQUAL <variable|string>)``
  154. True if the given string or variable's value is a valid number and equal
  155. to that on the right.
  156. .. _LESS_EQUAL:
  157. ``if(<variable|string> LESS_EQUAL <variable|string>)``
  158. .. versionadded:: 3.7
  159. True if the given string or variable's value is a valid number and less
  160. than or equal to that on the right.
  161. .. _GREATER_EQUAL:
  162. ``if(<variable|string> GREATER_EQUAL <variable|string>)``
  163. .. versionadded:: 3.7
  164. True if the given string or variable's value is a valid number and greater
  165. than or equal to that on the right.
  166. .. _STRLESS:
  167. ``if(<variable|string> STRLESS <variable|string>)``
  168. True if the given string or variable's value is lexicographically less
  169. than the string or variable on the right.
  170. .. _STRGREATER:
  171. ``if(<variable|string> STRGREATER <variable|string>)``
  172. True if the given string or variable's value is lexicographically greater
  173. than the string or variable on the right.
  174. .. _STREQUAL:
  175. ``if(<variable|string> STREQUAL <variable|string>)``
  176. True if the given string or variable's value is lexicographically equal
  177. to the string or variable on the right.
  178. .. _STRLESS_EQUAL:
  179. ``if(<variable|string> STRLESS_EQUAL <variable|string>)``
  180. .. versionadded:: 3.7
  181. True if the given string or variable's value is lexicographically less
  182. than or equal to the string or variable on the right.
  183. .. _STRGREATER_EQUAL:
  184. ``if(<variable|string> STRGREATER_EQUAL <variable|string>)``
  185. .. versionadded:: 3.7
  186. True if the given string or variable's value is lexicographically greater
  187. than or equal to the string or variable on the right.
  188. Version Comparisons
  189. """""""""""""""""""
  190. .. _VERSION_LESS:
  191. ``if(<variable|string> VERSION_LESS <variable|string>)``
  192. Component-wise integer version number comparison (version format is
  193. ``major[.minor[.patch[.tweak]]]``, omitted components are treated as zero).
  194. Any non-integer version component or non-integer trailing part of a version
  195. component effectively truncates the string at that point.
  196. .. _VERSION_GREATER:
  197. ``if(<variable|string> VERSION_GREATER <variable|string>)``
  198. Component-wise integer version number comparison (version format is
  199. ``major[.minor[.patch[.tweak]]]``, omitted components are treated as zero).
  200. Any non-integer version component or non-integer trailing part of a version
  201. component effectively truncates the string at that point.
  202. .. _VERSION_EQUAL:
  203. ``if(<variable|string> VERSION_EQUAL <variable|string>)``
  204. Component-wise integer version number comparison (version format is
  205. ``major[.minor[.patch[.tweak]]]``, omitted components are treated as zero).
  206. Any non-integer version component or non-integer trailing part of a version
  207. component effectively truncates the string at that point.
  208. .. _VERSION_LESS_EQUAL:
  209. ``if(<variable|string> VERSION_LESS_EQUAL <variable|string>)``
  210. .. versionadded:: 3.7
  211. Component-wise integer version number comparison (version format is
  212. ``major[.minor[.patch[.tweak]]]``, omitted components are treated as zero).
  213. Any non-integer version component or non-integer trailing part of a version
  214. component effectively truncates the string at that point.
  215. .. _VERSION_GREATER_EQUAL:
  216. ``if(<variable|string> VERSION_GREATER_EQUAL <variable|string>)``
  217. .. versionadded:: 3.7
  218. Component-wise integer version number comparison (version format is
  219. ``major[.minor[.patch[.tweak]]]``, omitted components are treated as zero).
  220. Any non-integer version component or non-integer trailing part of a version
  221. component effectively truncates the string at that point.
  222. Variable Expansion
  223. ^^^^^^^^^^^^^^^^^^
  224. The if command was written very early in CMake's history, predating
  225. the ``${}`` variable evaluation syntax, and for convenience evaluates
  226. variables named by its arguments as shown in the above signatures.
  227. Note that normal variable evaluation with ``${}`` applies before the if
  228. command even receives the arguments. Therefore code like
  229. .. code-block:: cmake
  230. set(var1 OFF)
  231. set(var2 "var1")
  232. if(${var2})
  233. appears to the if command as
  234. .. code-block:: cmake
  235. if(var1)
  236. and is evaluated according to the ``if(<variable>)`` case documented
  237. above. The result is ``OFF`` which is false. However, if we remove the
  238. ``${}`` from the example then the command sees
  239. .. code-block:: cmake
  240. if(var2)
  241. which is true because ``var2`` is defined to ``var1`` which is not a false
  242. constant.
  243. Automatic evaluation applies in the other cases whenever the
  244. above-documented condition syntax accepts ``<variable|string>``:
  245. * The left hand argument to ``MATCHES`` is first checked to see if it is
  246. a defined variable, if so the variable's value is used, otherwise the
  247. original value is used.
  248. * If the left hand argument to ``MATCHES`` is missing it returns false
  249. without error
  250. * Both left and right hand arguments to ``LESS``, ``GREATER``, ``EQUAL``,
  251. ``LESS_EQUAL``, and ``GREATER_EQUAL``, are independently tested to see if
  252. they are defined variables, if so their defined values are used otherwise
  253. the original value is used.
  254. * Both left and right hand arguments to ``STRLESS``, ``STRGREATER``,
  255. ``STREQUAL``, ``STRLESS_EQUAL``, and ``STRGREATER_EQUAL`` are independently
  256. tested to see if they are defined variables, if so their defined values are
  257. used otherwise the original value is used.
  258. * Both left and right hand arguments to ``VERSION_LESS``,
  259. ``VERSION_GREATER``, ``VERSION_EQUAL``, ``VERSION_LESS_EQUAL``, and
  260. ``VERSION_GREATER_EQUAL`` are independently tested to see if they are defined
  261. variables, if so their defined values are used otherwise the original value
  262. is used.
  263. * The right hand argument to ``NOT`` is tested to see if it is a boolean
  264. constant, if so the value is used, otherwise it is assumed to be a
  265. variable and it is dereferenced.
  266. * The left and right hand arguments to ``AND`` and ``OR`` are independently
  267. tested to see if they are boolean constants, if so they are used as
  268. such, otherwise they are assumed to be variables and are dereferenced.
  269. .. versionchanged:: 3.1
  270. To prevent ambiguity, potential variable or keyword names can be
  271. specified in a :ref:`Quoted Argument` or a :ref:`Bracket Argument`.
  272. A quoted or bracketed variable or keyword will be interpreted as a
  273. string and not dereferenced or interpreted.
  274. See policy :policy:`CMP0054`.
  275. There is no automatic evaluation for environment or cache
  276. :ref:`Variable References`. Their values must be referenced as
  277. ``$ENV{<name>}`` or ``$CACHE{<name>}`` wherever the above-documented
  278. condition syntax accepts ``<variable|string>``.