if.rst 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  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. ^^^^^^^^^^^^^^^^
  27. The following syntax applies to the ``condition`` argument of
  28. the ``if``, ``elseif`` and :command:`while` clauses.
  29. Compound conditions are evaluated in the following order of precedence:
  30. Innermost parentheses are evaluated first. Next come unary tests such
  31. as ``EXISTS``, ``COMMAND``, and ``DEFINED``. Then binary tests such as
  32. ``EQUAL``, ``LESS``, ``LESS_EQUAL``, ``GREATER``, ``GREATER_EQUAL``,
  33. ``STREQUAL``, ``STRLESS``, ``STRLESS_EQUAL``, ``STRGREATER``,
  34. ``STRGREATER_EQUAL``, ``VERSION_EQUAL``, ``VERSION_LESS``,
  35. ``VERSION_LESS_EQUAL``, ``VERSION_GREATER``, ``VERSION_GREATER_EQUAL``,
  36. and ``MATCHES``. Then the boolean operators in the order ``NOT``, ``AND``,
  37. and finally ``OR``.
  38. Possible conditions are:
  39. ``if(<constant>)``
  40. True if the constant is ``1``, ``ON``, ``YES``, ``TRUE``, ``Y``,
  41. or a non-zero number. False if the constant is ``0``, ``OFF``,
  42. ``NO``, ``FALSE``, ``N``, ``IGNORE``, ``NOTFOUND``, the empty string,
  43. or ends in the suffix ``-NOTFOUND``. Named boolean constants are
  44. case-insensitive. If the argument is not one of these specific
  45. constants, it is treated as a variable or string and the following
  46. signature is used.
  47. ``if(<variable|string>)``
  48. True if given a variable that is defined to a value that is not a false
  49. constant. False otherwise. (Note macro arguments are not variables.)
  50. ``if(NOT <condition>)``
  51. True if the condition is not true.
  52. ``if(<cond1> AND <cond2>)``
  53. True if both conditions would be considered true individually.
  54. ``if(<cond1> OR <cond2>)``
  55. True if either condition would be considered true individually.
  56. ``if(COMMAND command-name)``
  57. True if the given name is a command, macro or function that can be
  58. invoked.
  59. ``if(POLICY policy-id)``
  60. True if the given name is an existing policy (of the form ``CMP<NNNN>``).
  61. ``if(TARGET target-name)``
  62. True if the given name is an existing logical target name created
  63. by a call to the :command:`add_executable`, :command:`add_library`,
  64. or :command:`add_custom_target` command that has already been invoked
  65. (in any directory).
  66. ``if(TEST test-name)``
  67. True if the given name is an existing test name created by the
  68. :command:`add_test` command.
  69. ``if(EXISTS path-to-file-or-directory)``
  70. True if the named file or directory exists. Behavior is well-defined
  71. only for full paths. Resolves symbolic links, i.e. if the named file or
  72. directory is a symbolic link, returns true if the target of the
  73. symbolic link exists.
  74. ``if(file1 IS_NEWER_THAN file2)``
  75. True if ``file1`` is newer than ``file2`` or if one of the two files doesn't
  76. exist. Behavior is well-defined only for full paths. If the file
  77. time stamps are exactly the same, an ``IS_NEWER_THAN`` comparison returns
  78. true, so that any dependent build operations will occur in the event
  79. of a tie. This includes the case of passing the same file name for
  80. both file1 and file2.
  81. ``if(IS_DIRECTORY path-to-directory)``
  82. True if the given name is a directory. Behavior is well-defined only
  83. for full paths.
  84. ``if(IS_SYMLINK file-name)``
  85. True if the given name is a symbolic link. Behavior is well-defined
  86. only for full paths.
  87. ``if(IS_ABSOLUTE path)``
  88. True if the given path is an absolute path.
  89. ``if(<variable|string> MATCHES regex)``
  90. True if the given string or variable's value matches the given regular
  91. condition. See :ref:`Regex Specification` for regex format.
  92. ``()`` groups are captured in :variable:`CMAKE_MATCH_<n>` variables.
  93. ``if(<variable|string> LESS <variable|string>)``
  94. True if the given string or variable's value is a valid number and less
  95. than that on the right.
  96. ``if(<variable|string> GREATER <variable|string>)``
  97. True if the given string or variable's value is a valid number and greater
  98. than that on the right.
  99. ``if(<variable|string> EQUAL <variable|string>)``
  100. True if the given string or variable's value is a valid number and equal
  101. to that on the right.
  102. ``if(<variable|string> LESS_EQUAL <variable|string>)``
  103. True if the given string or variable's value is a valid number and less
  104. than or equal to that on the right.
  105. ``if(<variable|string> GREATER_EQUAL <variable|string>)``
  106. True if the given string or variable's value is a valid number and greater
  107. than or equal to that on the right.
  108. ``if(<variable|string> STRLESS <variable|string>)``
  109. True if the given string or variable's value is lexicographically less
  110. than the string or variable on the right.
  111. ``if(<variable|string> STRGREATER <variable|string>)``
  112. True if the given string or variable's value is lexicographically greater
  113. than the string or variable on the right.
  114. ``if(<variable|string> STREQUAL <variable|string>)``
  115. True if the given string or variable's value is lexicographically equal
  116. to the string or variable on the right.
  117. ``if(<variable|string> STRLESS_EQUAL <variable|string>)``
  118. True if the given string or variable's value is lexicographically less
  119. than or equal to the string or variable on the right.
  120. ``if(<variable|string> STRGREATER_EQUAL <variable|string>)``
  121. True if the given string or variable's value is lexicographically greater
  122. than or equal to the string or variable on the right.
  123. ``if(<variable|string> VERSION_LESS <variable|string>)``
  124. Component-wise integer version number comparison (version format is
  125. ``major[.minor[.patch[.tweak]]]``, omitted components are treated as zero).
  126. Any non-integer version component or non-integer trailing part of a version
  127. component effectively truncates the string at that point.
  128. ``if(<variable|string> VERSION_GREATER <variable|string>)``
  129. Component-wise integer version number comparison (version format is
  130. ``major[.minor[.patch[.tweak]]]``, omitted components are treated as zero).
  131. Any non-integer version component or non-integer trailing part of a version
  132. component effectively truncates the string at that point.
  133. ``if(<variable|string> VERSION_EQUAL <variable|string>)``
  134. Component-wise integer version number comparison (version format is
  135. ``major[.minor[.patch[.tweak]]]``, omitted components are treated as zero).
  136. Any non-integer version component or non-integer trailing part of a version
  137. component effectively truncates the string at that point.
  138. ``if(<variable|string> VERSION_LESS_EQUAL <variable|string>)``
  139. Component-wise integer version number comparison (version format is
  140. ``major[.minor[.patch[.tweak]]]``, omitted components are treated as zero).
  141. Any non-integer version component or non-integer trailing part of a version
  142. component effectively truncates the string at that point.
  143. ``if(<variable|string> VERSION_GREATER_EQUAL <variable|string>)``
  144. Component-wise integer version number comparison (version format is
  145. ``major[.minor[.patch[.tweak]]]``, omitted components are treated as zero).
  146. Any non-integer version component or non-integer trailing part of a version
  147. component effectively truncates the string at that point.
  148. ``if(<variable|string> IN_LIST <variable>)``
  149. True if the given element is contained in the named list variable.
  150. ``if(DEFINED <name>|CACHE{<name>}|ENV{<name>})``
  151. True if a variable, cache variable or environment variable
  152. with given ``<name>`` is defined. The value of the variable
  153. does not matter. Note that macro arguments are not variables.
  154. ``if((condition) AND (condition OR (condition)))``
  155. The conditions inside the parenthesis are evaluated first and then
  156. the remaining condition is evaluated as in the previous examples.
  157. Where there are nested parenthesis the innermost are evaluated as part
  158. of evaluating the condition that contains them.
  159. Variable Expansion
  160. ^^^^^^^^^^^^^^^^^^
  161. The if command was written very early in CMake's history, predating
  162. the ``${}`` variable evaluation syntax, and for convenience evaluates
  163. variables named by its arguments as shown in the above signatures.
  164. Note that normal variable evaluation with ``${}`` applies before the if
  165. command even receives the arguments. Therefore code like
  166. .. code-block:: cmake
  167. set(var1 OFF)
  168. set(var2 "var1")
  169. if(${var2})
  170. appears to the if command as
  171. .. code-block:: cmake
  172. if(var1)
  173. and is evaluated according to the ``if(<variable>)`` case documented
  174. above. The result is ``OFF`` which is false. However, if we remove the
  175. ``${}`` from the example then the command sees
  176. .. code-block:: cmake
  177. if(var2)
  178. which is true because ``var2`` is defined to ``var1`` which is not a false
  179. constant.
  180. Automatic evaluation applies in the other cases whenever the
  181. above-documented condition syntax accepts ``<variable|string>``:
  182. * The left hand argument to ``MATCHES`` is first checked to see if it is
  183. a defined variable, if so the variable's value is used, otherwise the
  184. original value is used.
  185. * If the left hand argument to ``MATCHES`` is missing it returns false
  186. without error
  187. * Both left and right hand arguments to ``LESS``, ``GREATER``, ``EQUAL``,
  188. ``LESS_EQUAL``, and ``GREATER_EQUAL``, are independently tested to see if
  189. they are defined variables, if so their defined values are used otherwise
  190. the original value is used.
  191. * Both left and right hand arguments to ``STRLESS``, ``STRGREATER``,
  192. ``STREQUAL``, ``STRLESS_EQUAL``, and ``STRGREATER_EQUAL`` are independently
  193. tested to see if they are defined variables, if so their defined values are
  194. used otherwise the original value is used.
  195. * Both left and right hand arguments to ``VERSION_LESS``,
  196. ``VERSION_GREATER``, ``VERSION_EQUAL``, ``VERSION_LESS_EQUAL``, and
  197. ``VERSION_GREATER_EQUAL`` are independently tested to see if they are defined
  198. variables, if so their defined values are used otherwise the original value
  199. is used.
  200. * The right hand argument to ``NOT`` is tested to see if it is a boolean
  201. constant, if so the value is used, otherwise it is assumed to be a
  202. variable and it is dereferenced.
  203. * The left and right hand arguments to ``AND`` and ``OR`` are independently
  204. tested to see if they are boolean constants, if so they are used as
  205. such, otherwise they are assumed to be variables and are dereferenced.
  206. To prevent ambiguity, potential variable or keyword names can be
  207. specified in a :ref:`Quoted Argument` or a :ref:`Bracket Argument`.
  208. A quoted or bracketed variable or keyword will be interpreted as a
  209. string and not dereferenced or interpreted.
  210. See policy :policy:`CMP0054`.
  211. There is no automatic evaluation for environment or cache
  212. :ref:`Variable References`. Their values must be referenced as
  213. ``$ENV{<name>}`` or ``$CACHE{<name>}`` wherever the above-documented
  214. condition syntax accepts ``<variable|string>``.