Lines Matching +refs:cmake +refs:help +refs:command

22 The official CMake language references is available in the cmake-language
23 manpage and `cmake-language online documentation
24 <https://cmake.org/cmake/help/v3.4/manual/cmake-language.7.html>`_.
34 of command line build tools as well as for popular IDEs.
47 is a command that matches the pattern _name_(_args_). Commands come in three
55 .. code-block:: cmake
65 .. code-block:: cmake
84 *before* the command being called receives the arguments. This means
86 command.
91 .. code-block:: cmake
104 .. code-block:: cmake
118 .. code-block:: cmake
123 the if command comparing the value of the dereferenced variables ``SOME_VAR``
127 .. code-block:: cmake
138 CMake policies please see the cmake-policies manpage or the `cmake-policies
140 <https://cmake.org/cmake/help/v3.4/manual/cmake-policies.7.html>`_.
149 .. code-block:: cmake
165 .. code-block:: cmake
175 .. code-block:: cmake
195 Variables that are cached or specified on the command line can have types
201 <https://cmake.org/cmake/help/v3.5/command/set.html#set-cache-entry>`_.
214 The CMake set command provides two scope-related options. PARENT_SCOPE sets a
240 For the full documentation on the CMake if command go
241 `here <https://cmake.org/cmake/help/v3.4/command/if.html>`_. That resource is
246 .. code-block:: cmake
265 .. code-block:: cmake
274 .. code-block:: cmake
305 .. code-block:: cmake
360 When defining a CMake command handling arguments is very useful. The examples
365 variable argument. If the command has named arguments they are required and must
369 .. code-block:: cmake
384 ``cmake-modules`` manpage, and is also available at the
385 `cmake-modules online documentation
386 <https://cmake.org/cmake/help/v3.4/module/CMakeParseArguments.html>`_.
389 As of CMake 3.5 the cmake_parse_arguments command has become a native command
407 .. code-block:: cmake
438 with the project in the middle of the command name (i.e. ``add_llvm_executable``
440 all defined in ``AddLLVM.cmake`` which is installed as part of the LLVM
457 * `add_custom_command <https://cmake.org/cmake/help/v3.4/command/add_custom_command.html>`_
458 * `add_custom_target <https://cmake.org/cmake/help/v3.4/command/add_custom_target.html>`_
459 * `file <https://cmake.org/cmake/help/v3.4/command/file.html>`_
460 * `list <https://cmake.org/cmake/help/v3.4/command/list.html>`_
461 * `math <https://cmake.org/cmake/help/v3.4/command/math.html>`_
462 * `string <https://cmake.org/cmake/help/v3.4/command/string.html>`_
464 The full documentation for CMake commands is in the ``cmake-commands`` manpage
465 and available on `CMake's website <https://cmake.org/cmake/help/v3.4/manual/cmake-commands.7.html>`_