if.rst 14 KB

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