if.rst 17 KB

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