Home
last modified time | relevance | path

Searched +refs:cmake +refs:commands (Results 1 – 25 of 388) sorted by relevance

12345678910>>...16

/aosp_15_r20/external/llvm/docs/
H A DCMakePrimer.rst22 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>`_.
48 primary types: language-defined (commands implemented in C++ in CMake), defined
55 .. code-block:: cmake
65 .. code-block:: cmake
91 .. code-block:: cmake
104 .. code-block:: cmake
115 One big "Gotcha" with variable dereferencing is that ``if`` commands implicitly
118 .. code-block:: cmake
[all …]
H A DAdvancedBuilds.rst11 `CMake <http://www.cmake.org/>`_ is a cross-platform build-generator tool. CMake
19 Unless otherwise explicitly called out these commands should work with any CMake
37 $ cmake -G Ninja -DCLANG_ENABLE_BOOTSTRAP=On <path to source>
61 You can build an Apple Clang compiler using the following commands:
65 $ cmake -G Ninja -C <path to clang>/cmake/caches/Apple-stage1.cmake <path to source>
69 CLANG_BOOTSTRAP_CMAKE_ARGS to pass the Apple-stage2.cmake cache script to the
74 based on the settings in Apple-stage2.cmake.
94 Our PGO.cmake cache script automates that whole process. You can use it by
99 $ cmake -G Ninja -C <path_to_clang>/cmake/caches/PGO.cmake <source dir>
165 following commands:
[all …]
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/manual/
DOPTIONS_HELP.txt36 The :manual:`cmake-commands(7)` manual entry for ``<cmd>`` is
41 List commands with help available and exit.
43 The list contains all commands for which help may be obtained by
47 ``--help-commands [<f>]``
48 Print cmake-commands manual and exit.
50 The :manual:`cmake-commands(7)` manual is printed in a
57 The :manual:`cmake-modules(7)` manual entry for ``<mod>`` is printed
69 Print cmake-modules manual and exit.
71 The :manual:`cmake-modules(7)` manual is printed in a human-readable
78 The :manual:`cmake-policies(7)` manual entry for ``<cmp>`` is
[all …]
Dcmake-language.7.rst1 .. cmake-manual-description: CMake Language Reference
3 cmake-language(7)
14 named ``CMakeLists.txt`` or ending in a ``.cmake`` file name extension.
19 * `Scripts`_ (``<script>.cmake``), and
20 * `Modules`_ (``<module>.cmake``).
38 An individual ``<script>.cmake`` source file may be processed
39 in *script mode* by using the :manual:`cmake(1)` command-line tool
40 with the ``-P`` option. Script mode simply runs the commands in
42 build system. It does not allow CMake commands that define build
49 use the :command:`include` command to load a ``<module>.cmake``
[all …]
Dcmake-buildsystem.7.rst1 .. cmake-manual-description: CMake Buildsystem Reference
3 cmake-buildsystem(7)
15 is a custom target containing custom commands. Dependencies between the
23 and :command:`add_library` commands. The resulting binary files have
28 .. code-block:: cmake
45 .. code-block:: cmake
65 .. code-block:: cmake
69 .. code-block:: cmake
78 the commands, dependency specifications and other APIs work similarly
88 .. code-block:: cmake
[all …]
/aosp_15_r20/external/zstd/build/cmake/
H A DREADME.md3 Contributions to the cmake build configurations are welcome. Please
4 use case sensitivity that matches modern (i.e. cmake version 2.6 and above)
5 conventions of using lower-case for commands, and upper-case for
10 As cmake doesn't support command like `cmake clean`, it's recommended to perform an "out of source …
13 cd build/cmake
16 cmake ..
19 Then you can clean all cmake caches by simply delete the new directory:
21 rm -rf build/cmake/builddir
24 And of course, you can directly build in build/cmake:
26 cd build/cmake
[all …]
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/command/
Dforeach.rst4 Evaluate a group of commands for each value in a list.
6 .. code-block:: cmake
9 <commands>
14 All commands between ``foreach`` and the matching ``endforeach`` are recorded
16 list of commands is invoked once for each item in ``<items>``.
23 The commands :command:`break` and :command:`continue` provide means to
32 .. code-block:: cmake
39 .. code-block:: cmake
51 .. code-block:: cmake
66 .. code-block:: cmake
[all …]
Dcmake_language.rst6 Call meta-operations on CMake commands.
20 This command will call meta-operations on built-in CMake commands or
21 those created via the :command:`macro` or :command:`function` commands.
30 .. code-block:: cmake
37 .. code-block:: cmake
44 .. code-block:: cmake
49 To ensure consistency of the code, the following commands are not allowed:
62 .. code-block:: cmake
70 .. code-block:: cmake
87 .. code-block:: cmake
[all …]
Dmacro.rst6 .. code-block:: cmake
9 <commands>
32 .. code-block:: cmake
35 <commands>
40 .. code-block:: cmake
58 When a macro is invoked, the commands recorded in the macro are
60 with the arguments passed, and then invoked as normal commands.
111 you will NOT be able to use commands like
113 .. code-block:: cmake
126 .. code-block:: cmake
[all …]
Dadd_custom_command.rst13 .. code-block:: cmake
53 the appended commands and dependencies apply to all configurations.
73 also useful when other build rules (e.g. custom commands)
84 :manual:`generator expressions <cmake-generator-expressions(7)>`.
115 :manual:`generator expressions <cmake-generator-expressions(7)>`.
138 Display the given message before the commands are executed at
183 :manual:`generator expressions <cmake-generator-expressions(7)>`.
190 :manual:`generator expressions <cmake-generator-expressions(7)>`,
241 :manual:`generator expressions <cmake-generator-expressions(7)>`.
253 All arguments to the commands will be escaped properly for the
[all …]
Dfunction.rst6 .. code-block:: cmake
9 <commands>
13 ``<arg1>``, ... The ``<commands>`` in the function definition
34 .. code-block:: cmake
37 <commands>
42 .. code-block:: cmake
60 When the function is invoked, the recorded ``<commands>`` are first
62 arguments passed, and then invoked as normal commands.
Dadd_library.rst13 .. code-block:: cmake
28 the syntax ``$<...>``. See the :manual:`cmake-generator-expressions(7)`
70 See the :manual:`cmake-buildsystem(7)` manual for more on defining
80 .. code-block:: cmake
91 .. code-block:: cmake
100 They may contain custom commands generating such sources, but not
101 ``PRE_BUILD``, ``PRE_LINK``, or ``POST_BUILD`` commands. Some native build
112 .. code-block:: cmake
121 target using the commands:
145 .. code-block:: cmake
[all …]
Dadd_executable.rst13 .. code-block:: cmake
28 the syntax ``$<...>``. See the :manual:`cmake-generator-expressions(7)`
54 See the :manual:`cmake-buildsystem(7)` manual for more on defining
64 .. code-block:: cmake
74 for convenient reference from commands like :command:`add_custom_command`.
85 .. code-block:: cmake
90 be used to refer to ``<target>`` in subsequent commands. The ``<name>``
104 from, executables for custom commands and custom targets. They can also be
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/release/
D3.12.rst18 value (e.g. via the :manual:`cmake(1)` ``-T`` option) to specify a
24 * The :manual:`cmake(1)` :ref:`Build Tool Mode` (``cmake --build``) gained
35 commands now accept a version range using the form ``<min>[...<max>]``.
41 * The :command:`file(GLOB)` and :command:`file(GLOB_RECURSE)` commands
45 * The :command:`file(TOUCH)` and :command:`file(TOUCH_NOCREATE)` commands
52 maintained as a stack so nested calls to all ``find_*`` commands inside
79 commands gained a ``SHELL:`` prefix to specify a group of related
141 :command:`install(EXPORT)` and :command:`export` commands.
144 :manual:`generator expressions <cmake-generator-expressions(7)>`.
187 consistent with standard CMake commands to generate libraries and is
[all …]
D3.7.rst64 * The :command:`file(DOWNLOAD)` and :command:`file(UPLOAD)` commands gained
67 * The :command:`find_library` and :command:`find_package` commands learned
86 commands gained support for the ``%a`` and ``%b`` placeholders.
217 commands gained a new ``CAPTURE_CMAKE_ERROR`` option to capture any errors
218 that occur as the commands run into a variable and avoid affecting the return
238 :command:`cpack_ifw_configure_component_group` commands gained a new
275 * :manual:`cmake(1)` gained a ``-E capabilities`` option to provide a
277 cmake tool (available generators, etc.).
279 * A new :manual:`cmake-server(7)` mode was added to provide semantic
284 * The :manual:`cmake(1)` command learned a ``--trace-source=<file>`` option.
[all …]
D3.18.rst22 * :manual:`cmake(1)` gained support for profiling of CMake scripts through
25 * :manual:`cmake(1)` gained a ``cat`` command line
32 * The :command:`add_library` and :command:`add_executable` commands
37 scripted or built-in commands, starting with a mode to ``CALL`` other
38 commands, and ``EVAL CODE`` to inplace evaluate a CMake script.
47 ``ARCHIVE_EXTRACT`` subcommands to expose the :manual:`cmake(1)` ``-E tar``
59 and :command:`find_file` commands gained a new ``REQUIRED`` option that will
118 :manual:`generator expressions <cmake-generator-expressions(7)>`.
177 interactive editing in :manual:`cmake-gui(1)` and :manual:`ccmake(1)`.
215 :manual:`generator expressions <cmake-generator-expressions(7)>` were added
[all …]
/aosp_15_r20/external/webrtc/third_party/crc32c/src/
H A DREADME.md49 This project uses [CMake](https://cmake.org/) for building and testing. CMake is
62 apm install autocomplete-clang build build-cmake clang-format language-cmake \
71 apm install autocomplete-plus build build-cmake clang-format language-cmake \
77 The following commands build and install the project.
82 cmake -DCRC32C_BUILD_TESTS=0 -DCRC32C_BUILD_BENCHMARKS=0 .. && make all install
92 cmake .. && cmake --build . && ctest --output-on-failure
102 cmake .. -DCMAKE_SYSTEM_NAME=Android -DCMAKE_ANDROID_ARCH_ABI=arm64-v8a \
106 -DCMAKE_BUILD_TYPE=Release && cmake --build .
109 The following commands install and run the benchmarks.
118 The following commands install and run the tests.
/aosp_15_r20/external/skia/docker/
H A DREADME.md10 need to manually push a verison, then run the following commands:
22 need to manually push a verison, then run the following commands:
42 following commands:
48 ## cmake-release
55 docker build -t cmake-release ./cmake-release/
56 docker tag cmake-release gcr.io/skia-public/cmake-release:3.13.1_v2
57 docker push gcr.io/skia-public/cmake-release:3.13.1_v2
61 docker build -t cmake-release ./cmake-release/
64 docker run -it cmake-release /bin/bash
66 docker run -v $SKIA_ROOT:/SRC -v /tmp/output:/OUT cmake-release /SRC/infra/cmake/build_skia.sh
/aosp_15_r20/external/libxaac/
H A DREADME.md26 * Build the library followed by the application using the below commands:
33 Users can also use cmake to build for `x86`, `x86_64`, `armv7`, `armv8` and Windows (MSVS project) …
36 …eate MSVS project files for the libxaac decoder and encoder from cmake, run the following commands:
44 $ cmake -G "Visual Studio 15 2017" ..
48 To create MSVS project files for Win64 version from cmake, run the following commands:
52 $ cmake -G "Visual Studio 15 2017 Win64" ..
57 Run the following commands to build the libxaac decoder and encoder for native platform:
65 $ cmake ..
70 Ensure to edit the file cmake/toolchains/*_toolchain.cmake to set proper paths in host for correspo…
77 $ cmake .. -DCMAKE_TOOLCHAIN_FILE=../cmake/toolchains/x86_toolchain.cmake
[all …]
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/variable/
DCMAKE_COMMAND.rst4 The full path to the :manual:`cmake(1)` executable.
6 This is the full path to the CMake executable :manual:`cmake(1)` which is
7 useful from custom commands that want to use the ``cmake -E`` option for
8 portable system commands. (e.g. ``/usr/local/bin/cmake``)
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Modules/
DFindUnixCommands.cmake2 # file Copyright.txt or https://cmake.org/licensing for details.
8 Find Unix commands, including the ones from Cygwin
10 This module looks for the Unix commands ``bash``, ``cp``, ``gzip``,
15 include(${CMAKE_CURRENT_LIST_DIR}/FindCygwin.cmake)
16 include(${CMAKE_CURRENT_LIST_DIR}/FindMsys.cmake)
75 include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/generator/
DNinja Multi-Config.rst22 ``cmake --build . --config <Config>`` will always use ``build-<Config>.ninja``
23 to build. If no ``--config`` argument is specified, ``cmake --build .`` will
55 .. code-block:: cmake
65 the following commands:
71 cmake --build . --config Debug --target generated
84 cmake --build . --config Release --target generated:Debug
121 .. code-block:: cmake
136 ``PRE_BUILD``, ``PRE_LINK``, and ``POST_BUILD`` custom commands for targets
141 .. code-block:: cmake
163 first and second custom commands get run, since their byproducts are unique
[all …]
/aosp_15_r20/external/googletest/docs/
H A Dquickstart-cmake.md14 * [CMake](https://cmake.org/) and a compatible build tool for building the
19 [CMake Generators](https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html)
26 [CMake installation guide](https://cmake.org/install).
29 Note: The terminal commands in this tutorial show a Unix shell prompt, but the
30 commands work on the Windows command line as well.
47 [`FetchContent` CMake module](https://cmake.org/cmake/help/latest/module/FetchContent.html).
51 ```cmake
75 [CMake Tutorial](https://cmake.org/cmake/help/latest/guide/tutorial/index.html).
103 ```cmake
123 [`GoogleTest` CMake module](https://cmake.org/cmake/help/git-stage/module/GoogleTest.html).
[all …]
/aosp_15_r20/external/cronet/third_party/boringssl/src/third_party/googletest/docs/
H A Dquickstart-cmake.md14 * [CMake](https://cmake.org/) and a compatible build tool for building the
19 [CMake Generators](https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html)
26 [CMake installation guide](https://cmake.org/install).
29 Note: The terminal commands in this tutorial show a Unix shell prompt, but the
30 commands work on the Windows command line as well.
47 [`FetchContent` CMake module](https://cmake.org/cmake/help/latest/module/FetchContent.html).
51 ```cmake
75 [CMake Tutorial](https://cmake.org/cmake/help/latest/guide/tutorial/index.html).
103 ```cmake
123 [`GoogleTest` CMake module](https://cmake.org/cmake/help/git-stage/module/GoogleTest.html).
[all …]
/aosp_15_r20/external/cronet/third_party/googletest/src/docs/
H A Dquickstart-cmake.md14 * [CMake](https://cmake.org/) and a compatible build tool for building the
19 [CMake Generators](https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html)
26 [CMake installation guide](https://cmake.org/install).
29 Note: The terminal commands in this tutorial show a Unix shell prompt, but the
30 commands work on the Windows command line as well.
47 [`FetchContent` CMake module](https://cmake.org/cmake/help/latest/module/FetchContent.html).
51 ```cmake
75 [CMake Tutorial](https://cmake.org/cmake/help/latest/guide/tutorial/index.html).
103 ```cmake
123 [`GoogleTest` CMake module](https://cmake.org/cmake/help/git-stage/module/GoogleTest.html).
[all …]

12345678910>>...16