if.rst 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244
  1. if
  2. --
  3. Conditionally execute a group of commands.
  4. .. code-block:: cmake
  5. if(expression)
  6. # then section.
  7. COMMAND1(ARGS ...)
  8. COMMAND2(ARGS ...)
  9. #...
  10. elseif(expression2)
  11. # elseif section.
  12. COMMAND1(ARGS ...)
  13. COMMAND2(ARGS ...)
  14. #...
  15. else(expression)
  16. # else section.
  17. COMMAND1(ARGS ...)
  18. COMMAND2(ARGS ...)
  19. #...
  20. endif(expression)
  21. Evaluates the given expression. If the result is true, the commands
  22. in the THEN section are invoked. Otherwise, the commands in the else
  23. section are invoked. The elseif and else sections are optional. You
  24. may have multiple elseif clauses. Note that the expression in the
  25. else and endif clause is optional. Long expressions can be used and
  26. there is a traditional order of precedence. Parenthetical expressions
  27. are evaluated first followed by unary tests such as ``EXISTS``,
  28. ``COMMAND``, and ``DEFINED``. Then any binary tests such as
  29. ``EQUAL``, ``LESS``, ``LESS_EQUAL``, ``GREATER``, ``GREATER_EQUAL``,
  30. ``STREQUAL``, ``STRLESS``, ``STRLESS_EQUAL``, ``STRGREATER``,
  31. ``STRGREATER_EQUAL``, ``VERSION_EQUAL``, ``VERSION_LESS``,
  32. ``VERSION_LESS_EQUAL``, ``VERSION_GREATER``, ``VERSION_GREATER_EQUAL``,
  33. and ``MATCHES`` will be evaluated. Then boolean ``NOT`` operators and
  34. finally boolean ``AND`` and then ``OR`` operators will be evaluated.
  35. Possible expressions are:
  36. ``if(<constant>)``
  37. True if the constant is ``1``, ``ON``, ``YES``, ``TRUE``, ``Y``,
  38. or a non-zero number. False if the constant is ``0``, ``OFF``,
  39. ``NO``, ``FALSE``, ``N``, ``IGNORE``, ``NOTFOUND``, the empty string,
  40. or ends in the suffix ``-NOTFOUND``. Named boolean constants are
  41. case-insensitive. If the argument is not one of these specific
  42. constants, it is treated as a variable or string and the following
  43. signature is used.
  44. ``if(<variable|string>)``
  45. True if given a variable that is defined to a value that is not a false
  46. constant. False otherwise. (Note macro arguments are not variables.)
  47. ``if(NOT <expression>)``
  48. True if the expression is not true.
  49. ``if(<expr1> AND <expr2>)``
  50. True if both expressions would be considered true individually.
  51. ``if(<expr1> OR <expr2>)``
  52. True if either expression would be considered true individually.
  53. ``if(COMMAND command-name)``
  54. True if the given name is a command, macro or function that can be
  55. invoked.
  56. ``if(POLICY policy-id)``
  57. True if the given name is an existing policy (of the form ``CMP<NNNN>``).
  58. ``if(TARGET target-name)``
  59. True if the given name is an existing logical target name created
  60. by a call to the :command:`add_executable`, :command:`add_library`,
  61. or :command:`add_custom_target` command that has already been invoked
  62. (in any directory).
  63. ``if(TEST test-name)``
  64. True if the given name is an existing test name created by the
  65. :command:`add_test` command.
  66. ``if(EXISTS path-to-file-or-directory)``
  67. True if the named file or directory exists. Behavior is well-defined
  68. only for full paths.
  69. ``if(file1 IS_NEWER_THAN file2)``
  70. True if ``file1`` is newer than ``file2`` or if one of the two files doesn't
  71. exist. Behavior is well-defined only for full paths. If the file
  72. time stamps are exactly the same, an ``IS_NEWER_THAN`` comparison returns
  73. true, so that any dependent build operations will occur in the event
  74. of a tie. This includes the case of passing the same file name for
  75. both file1 and file2.
  76. ``if(IS_DIRECTORY path-to-directory)``
  77. True if the given name is a directory. Behavior is well-defined only
  78. for full paths.
  79. ``if(IS_SYMLINK file-name)``
  80. True if the given name is a symbolic link. Behavior is well-defined
  81. only for full paths.
  82. ``if(IS_ABSOLUTE path)``
  83. True if the given path is an absolute path.
  84. ``if(<variable|string> MATCHES regex)``
  85. True if the given string or variable's value matches the given regular
  86. expression. See :ref:`Regex Specification` for regex format.
  87. ``()`` groups are captured in :variable:`CMAKE_MATCH_<n>` variables.
  88. ``if(<variable|string> LESS <variable|string>)``
  89. True if the given string or variable's value is a valid number and less
  90. than that on the right.
  91. ``if(<variable|string> GREATER <variable|string>)``
  92. True if the given string or variable's value is a valid number and greater
  93. than that on the right.
  94. ``if(<variable|string> EQUAL <variable|string>)``
  95. True if the given string or variable's value is a valid number and equal
  96. to that on the right.
  97. ``if(<variable|string> LESS_EQUAL <variable|string>)``
  98. True if the given string or variable's value is a valid number and less
  99. than or equal to that on the right.
  100. ``if(<variable|string> GREATER_EQUAL <variable|string>)``
  101. True if the given string or variable's value is a valid number and greater
  102. than or equal to that on the right.
  103. ``if(<variable|string> STRLESS <variable|string>)``
  104. True if the given string or variable's value is lexicographically less
  105. than the string or variable on the right.
  106. ``if(<variable|string> STRGREATER <variable|string>)``
  107. True if the given string or variable's value is lexicographically greater
  108. than the string or variable on the right.
  109. ``if(<variable|string> STREQUAL <variable|string>)``
  110. True if the given string or variable's value is lexicographically equal
  111. to the string or variable on the right.
  112. ``if(<variable|string> STRLESS_EQUAL <variable|string>)``
  113. True if the given string or variable's value is lexicographically less
  114. than or equal to the string or variable on the right.
  115. ``if(<variable|string> STRGREATER_EQUAL <variable|string>)``
  116. True if the given string or variable's value is lexicographically greater
  117. than or equal to the string or variable on the right.
  118. ``if(<variable|string> VERSION_LESS <variable|string>)``
  119. Component-wise integer version number comparison (version format is
  120. ``major[.minor[.patch[.tweak]]]``).
  121. ``if(<variable|string> VERSION_GREATER <variable|string>)``
  122. Component-wise integer version number comparison (version format is
  123. ``major[.minor[.patch[.tweak]]]``).
  124. ``if(<variable|string> VERSION_EQUAL <variable|string>)``
  125. Component-wise integer version number comparison (version format is
  126. ``major[.minor[.patch[.tweak]]]``).
  127. ``if(<variable|string> VERSION_LESS_EQUAL <variable|string>)``
  128. Component-wise integer version number comparison (version format is
  129. ``major[.minor[.patch[.tweak]]]``).
  130. ``if(<variable|string> VERSION_GREATER_EQUAL <variable|string>)``
  131. Component-wise integer version number comparison (version format is
  132. ``major[.minor[.patch[.tweak]]]``).
  133. ``if(<variable|string> IN_LIST <variable>)``
  134. True if the given element is contained in the named list variable.
  135. ``if(DEFINED <variable>)``
  136. True if the given variable is defined. It does not matter if the
  137. variable is true or false just if it has been set. (Note macro
  138. arguments are not variables.)
  139. ``if((expression) AND (expression OR (expression)))``
  140. The expressions inside the parenthesis are evaluated first and then
  141. the remaining expression is evaluated as in the previous examples.
  142. Where there are nested parenthesis the innermost are evaluated as part
  143. of evaluating the expression that contains them.
  144. The if command was written very early in CMake's history, predating
  145. the ``${}`` variable evaluation syntax, and for convenience evaluates
  146. variables named by its arguments as shown in the above signatures.
  147. Note that normal variable evaluation with ``${}`` applies before the if
  148. command even receives the arguments. Therefore code like::
  149. set(var1 OFF)
  150. set(var2 "var1")
  151. if(${var2})
  152. appears to the if command as::
  153. if(var1)
  154. and is evaluated according to the ``if(<variable>)`` case documented
  155. above. The result is ``OFF`` which is false. However, if we remove the
  156. ``${}`` from the example then the command sees::
  157. if(var2)
  158. which is true because ``var2`` is defined to "var1" which is not a false
  159. constant.
  160. Automatic evaluation applies in the other cases whenever the
  161. above-documented signature accepts ``<variable|string>``:
  162. * The left hand argument to ``MATCHES`` is first checked to see if it is
  163. a defined variable, if so the variable's value is used, otherwise the
  164. original value is used.
  165. * If the left hand argument to ``MATCHES`` is missing it returns false
  166. without error
  167. * Both left and right hand arguments to ``LESS``, ``GREATER``, ``EQUAL``,
  168. ``LESS_EQUAL``, and ``GREATER_EQUAL``, are independently tested to see if
  169. they are defined variables, if so their defined values are used otherwise
  170. the original value is used.
  171. * Both left and right hand arguments to ``STRLESS``, ``STRGREATER``,
  172. ``STREQUAL``, ``STRLESS_EQUAL``, and ``STRGREATER_EQUAL`` are independently
  173. tested to see if they are defined variables, if so their defined values are
  174. used otherwise the original value is used.
  175. * Both left and right hand arguments to ``VERSION_LESS``,
  176. ``VERSION_GREATER``, ``VERSION_EQUAL``, ``VERSION_LESS_EQUAL``, and
  177. ``VERSION_GREATER_EQUAL`` are independently tested to see if they are defined
  178. variables, if so their defined values are used otherwise the original value
  179. is used.
  180. * The right hand argument to ``NOT`` is tested to see if it is a boolean
  181. constant, if so the value is used, otherwise it is assumed to be a
  182. variable and it is dereferenced.
  183. * The left and right hand arguments to ``AND`` and ``OR`` are independently
  184. tested to see if they are boolean constants, if so they are used as
  185. such, otherwise they are assumed to be variables and are dereferenced.
  186. To prevent ambiguity, potential variable or keyword names can be
  187. specified in a :ref:`Quoted Argument` or a :ref:`Bracket Argument`.
  188. A quoted or bracketed variable or keyword will be interpreted as a
  189. string and not dereferenced or interpreted.
  190. See policy :policy:`CMP0054`.