Home
last modified time | relevance | path

Searched +refs:cmake +refs:mode (Results 1 – 25 of 347) sorted by relevance

12345678910>>...14

/aosp_15_r20/external/executorch/examples/portable/
H A DREADME.md3 …-end workflow of using ExecuTorch in [portable mode](../../docs/source/concepts.md#portable-mode-l…
17 ## Using portable mode
19 …e model to generate a `.pte` file in [portable mode](../../docs/source/concepts.md#portable-mode-l…
48 (rm -rf cmake-out \
49 && mkdir cmake-out \
50 && cd cmake-out \
51 && cmake -DEXECUTORCH_PAL_DEFAULT=posix ..) \
52 && cmake --build cmake-out -j32 --target executor_runner
55 ./cmake-out/executor_runner --model_path mv2.pte
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/command/
Dfind_package.rst16 **Module mode**
17 In this mode, CMake searches for a file called ``Find<PackageName>.cmake``,
25 The ``Find<PackageName>.cmake`` file is not typically provided by the
33 Module mode is only supported by the
36 **Config mode**
37 In this mode, CMake searches for a file called
38 ``<lowercasePackageName>-config.cmake`` or ``<PackageName>Config.cmake``.
39 It will also look for ``<lowercasePackageName>-config-version.cmake`` or
40 ``<PackageName>ConfigVersion.cmake`` if version details were specified
44 In config mode, the command can be given a list of names to search for
[all …]
Dseparate_arguments.rst6 .. code-block:: cmake
8 separate_arguments(<variable> <mode> [PROGRAM [SEPARATE_ARGS]] <args>)
18 They are specified by the ``<mode>`` argument which must
37 Proceeds as in ``WINDOWS_COMMAND`` mode if the host system is Windows.
38 Otherwise proceeds as in ``UNIX_COMMAND`` mode.
53 .. code-block:: cmake
66 .. code-block:: cmake
74 .. code-block:: cmake
Dlist.rst51 A list in cmake is a ``;`` separated group of strings. To create a
71 .. code-block:: cmake
79 .. code-block:: cmake
87 .. code-block:: cmake
99 .. code-block:: cmake
115 .. code-block:: cmake
127 .. code-block:: cmake
135 .. code-block:: cmake
141 Includes or removes items from the list that match the mode's pattern.
142 In ``REGEX`` mode, items will be matched against the given regular expression.
[all …]
Dget_filename_component.rst11 .. code-block:: cmake
13 get_filename_component(<var> <FileName> <mode> [CACHE])
15 Sets ``<var>`` to a component of ``<FileName>``, where ``<mode>`` is one of:
34 .. code-block:: cmake
36 get_filename_component(<var> <FileName> <mode> [BASE_DIR <dir>] [CACHE])
40 Sets ``<var>`` to the absolute path of ``<FileName>``, where ``<mode>`` is one
57 .. code-block:: cmake
Dmessage.rst12 message([<mode>] "message text" ...)
21 .. code-block:: cmake
23 message([<mode>] "message text" ...)
29 The optional ``<mode>`` keyword determines the type of message, which
80 :manual:`CMake GUI <cmake-gui(1)>` displays all messages in its log area.
104 enabled by giving the :manual:`cmake <cmake(1)>` ``--log-context``
123 .. code-block:: cmake
136 .. code-block:: cmake
162 .. code-block:: cmake
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/variable/
DCMAKE_FIND_PACKAGE_PREFER_CONFIG.rst6 Tell :command:`find_package` to try "Config" mode before "Module" mode if no
7 mode was specified.
9 The command :command:`find_package` operates without an explicit mode when
11 by default, CMake first tries Module mode by searching for a
12 ``Find<pkg>.cmake`` module. If it fails, CMake then searches for the package
13 using Config mode.
16 :command:`find_package` to first search using Config mode before falling back
17 to Module mode.
23 system's ``Find<pkg>.cmake`` module before finding the developer's custom
27 ``<pkg>Config.cmake`` files to provide the same result variables as the
[all …]
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Modules/
DCMakePackageConfigHelpers.cmake2 # file Copyright.txt or https://cmake.org/licensing for details.
30 :command:`configure_file()` command when creating the ``<PackageName>Config.cmake``
31 or ``<PackageName>-config.cmake`` file for installing a project or library.
33 in the installed ``Config.cmake`` file.
35 In a ``FooConfig.cmake`` file there may be code like this to make the install
38 .. code-block:: cmake
50 effect that the resulting ``FooConfig.cmake`` file would work poorly under
53 :variable:`CMAKE_INSTALL_PREFIX` was set at build/cmake time.
56 the resulting ``FooConfig.cmake`` file relocatable. Usage:
58 1. write a ``FooConfig.cmake.in`` file as you are used to
[all …]
DCTestTargets.cmake2 # file Copyright.txt or https://cmake.org/licensing for details.
6 message(FATAL_ERROR "Do not include CTestTargets.cmake directly")
58 foreach(mode Experimental Nightly Continuous NightlyMemoryCheck)
59 add_custom_target(${mode}
60 ${CMAKE_CTEST_COMMAND} ${__conf_types} -D ${mode}
63 set_property(TARGET ${mode} PROPERTY RULE_LAUNCH_CUSTOM "")
64 set_property(TARGET ${mode} PROPERTY FOLDER "CTestDashboardTargets")
70 foreach(mode Nightly Experimental Continuous)
75 add_custom_target(${mode}${testtype}
76 ${CMAKE_CTEST_COMMAND} ${__conf_types} -D ${mode}${testtype}
[all …]
/aosp_15_r20/external/cronet/third_party/libc++/src/utils/ci/
H A Drun-buildbot103 if xcrun --find cmake &>/dev/null; then
118 function generate-cmake-base() {
134 function generate-cmake() {
135 generate-cmake-base \
141 function generate-cmake-libcxx-win() {
142 generate-cmake-base \
149 function generate-cmake-android() {
150 generate-cmake-base \
219 generate-cmake \
244 generate-cmake
[all …]
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/manual/
Dcmake.1.rst1 .. cmake-manual-description: CMake Command-Line Reference
3 cmake(1)
12 cmake [<options>] <path-to-source>
13 cmake [<options>] <path-to-existing-build>
14 cmake [<options>] -S <path-to-source> -B <path-to-build>
17 cmake --build <dir> [<options>] [-- <build-tool-options>]
20 cmake --install <dir> [<options>]
23 cmake --open <dir>
26 cmake [{-D <var>=<value>}...] -P <cmake-script-file>
29 cmake -E <command> [<options>]
[all …]
Dcpack.1.rst1 .. cmake-manual-description: CPack Command-Line Reference
23 of the :manual:`cmake <cmake(1)>` command.
32 :manual:`CMake language <cmake-language(7)>`. Unless chosen differently
33 through the command-line option ``--config``, the file ``CPackConfig.cmake``
36 In the standard CMake workflow, the file ``CPackConfig.cmake`` is generated
37 by the :manual:`cmake <cmake(1)>` executable, provided the :module:`CPack`
47 the ``CPackConfig.cmake`` configuration file. If this option is not given,
67 details. By default, ``CPackConfig.cmake`` in the current directory will
80 Put the underlying cmake scripts in trace mode.
83 Put the underlying cmake scripts in expanded trace mode.
[all …]
/aosp_15_r20/external/armnn/samples/ObjectDetection/
H A DReadme.md22 2. For Delegate file mode following dependencies exist:
34 and add to every cmake command those compiler flags:
43 For Arm NN public C++ API mode:
45 For Delegate file mode:
52 1. Inside custom user directory specified by ARMNN_LIB_DIR cmake option.
59 Please see [find_armnn.cmake](./cmake/find_armnn.cmake) for implementation details.
89 1. Inside custom user directory specified by OPENCV_LIB_DIR cmake option.
96 Please see [find_opencv.cmake](./cmake/find_opencv.cmake) for implementation details.
98 ### Tensorflow Lite (Needed only in delegate file mode)
103 …d Tensorflow lite and provide the path to its root and output library directories through the cmake
[all …]
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Help/release/
D3.0.rst23 ``cmake --help-command`` and similar command-line options.
27 - :manual:`cmake-buildsystem(7)`
28 - :manual:`cmake-commands(7)`, replacing ``cmakecommands(1)``
30 - :manual:`cmake-developer(7)`
31 - :manual:`cmake-generator-expressions(7)`
32 - :manual:`cmake-generators(7)`
33 - :manual:`cmake-language(7)`
34 - :manual:`cmake-modules(7)`, replacing ``cmakemodules(1)``
35 - :manual:`cmake-packages(7)`
36 - :manual:`cmake-policies(7)`, replacing ``cmakepolicies(1)``
[all …]
D3.15.rst66 to specify a default generator to use when :manual:`cmake(1)` is
72 * The :manual:`cmake(1)` ``--build`` tool ``--target`` parameter gained support
73 for multiple targets, e.g. ``cmake --build . --target Library1 Library2``.
75 ``cmake --build . -t Library1 Library2``.
77 * The :manual:`cmake(1)` command gained a new ``--install`` option.
81 * The :manual:`cmake(1)` command learned a new CLI option ``--loglevel``.
83 * The :manual:`cmake(1)` ``-E remove_directory`` command-line tool learned
86 * The :manual:`cmake(1)` ``-E tar`` tool has been improved:
204 longer ignored in config mode. Note that the CMake package shipped with
211 format in module mode. See policy :policy:`CMP0093`.
[all …]
D3.21.rst16 * :manual:`cmake-presets(7)` gained support for specifying the install prefix
19 * :manual:`cmake-presets(7)` gained support for conditional enabling of presets.
21 * :manual:`cmake-presets(7)` gained support for a ``${hostSystemName}`` macro.
23 * :manual:`cmake-presets(7)` gained support for omitting the ``generator`` and
44 :manual:`Compile Features <cmake-compile-features(7)>` functionality gained
52 * :manual:`cmake(1)` gained the ``--install-prefix <dir>``
55 * :manual:`cmake(1)` gained the ``--toolchain <path/to/file>``
58 * :manual:`cmake(1)` ``-E capabilities`` output, for some generators,
68 in traditional (``Trad``) mode, and compiler id ``FujitsuClang``
69 in ``Clang`` mode.
[all …]
D3.17.rst16 * :manual:`cmake(1)` gained a :generator:`Ninja Multi-Config` generator,
35 * The :manual:`Compile Features <cmake-compile-features(7)>` functionality
49 * :manual:`cmake(1)` gained a ``--debug-find`` command-line option to
52 * :manual:`cmake(1)` gained a ``--trace-format`` command-line option that
57 * :manual:`cmake(1)` gained a ``-E rm`` command-line tool that can be
71 * The :command:`load_cache(READ_WITH_PREFIX)` command mode is now allowed
72 when using ``cmake -P`` to :ref:`Run a Script <Script Processing Mode>`.
105 print extra ``find_*`` call information during the cmake run to standard
142 :manual:`generator expressions <cmake-generator-expressions(7)>`.
169 the ``CURLConfig.cmake`` package configuration file generated by
[all …]
D3.14.rst60 has been added. See the :manual:`cmake-file-api(7)` manual.
61 This is intended to replace the :manual:`cmake-server(7)` mode for IDEs.
72 * The :manual:`cmake(1)` :ref:`Build Tool Mode <Build Tool Mode>`
73 (``cmake --build``) gained ``--verbose`` and ``-v`` options to
77 * The :manual:`cmake(1)` ``-E compare_files`` command learned a new
81 * The :manual:`cmake-gui(1)` dialog gained new ``-S`` and ``-B`` arguments to
93 * The :command:`file` command gained a ``SIZE`` mode to get the size
148 determine whether they're running in project mode, script mode,
149 find-package mode, CTest, or CPack.
161 support of :manual:`generator expressions <cmake-generator-expressions(7)>`.
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/patches/
Dremove-owners.patch2 deleted file mode 100644
11 deleted file mode 100644
21 diff --git a/grpc/cmake/OWNERS b/grpc/cmake/OWNERS
22 deleted file mode 100644
24 --- a/grpc/cmake/OWNERS
31 deleted file mode 100644
40 deleted file mode 100644
48 deleted file mode 100644
57 deleted file mode 100644
66 deleted file mode 100644
[all …]
/aosp_15_r20/external/grpc-grpc/tools/run_tests/helper_scripts/
H A Dbuild_cxx.bat18 mkdir cmake
19 cd cmake
22 set "INSTALL_PATH=%~dp0\cmake\install"
48 @rem By default cmake together with Visual Studio generator
54 @rem See b/275694647 and https://gitlab.kitware.com/cmake/cmake/-/issues/16202#note_140259
72cmake -G "%GRPC_CMAKE_GENERATOR%" -DCMAKE_C_COMPILER="cl.exe" -DCMAKE_CXX_COMPILER="cl.exe" -DABSL…
75 @rem Install opentelemetry-cpp since we only support "package" mode for opentelemetry at present.
80cmake -G "%GRPC_CMAKE_GENERATOR%" -DCMAKE_C_COMPILER="cl.exe" -DCMAKE_CXX_COMPILER="cl.exe" -DWITH…
85 mkdir cmake
86 cd cmake
[all …]
/aosp_15_r20/external/lz4/
H A DNEWS16 build: cmake minimum version raised to 3.5
17 build: cmake improvements, by @foxeng, @Ohjurot, @LocalSpook, @teo-tsirpanis, @ur4t and @t-mat
20 build: Visual Studio solutions generated by `cmake` via scripts
52 perf: reduced stack usage in high compression mode, by @Yanpas
59 cli : benchmark mode supports dictionary, by @rkoradi
62 build: contrib/cmake_unofficial/ moved to build/cmake/
119 cli : benchmark mode more accurate for small inputs
152 lz4hc : new high compression mode : levels 10-12 compress more and slower, by Przemyslaw Skibinski
154 cli : fix minor notification when using -r recursive mode
158 build : cmake : improvements by Michał Górny (#296)
[all …]
/aosp_15_r20/external/curl/
H A Dappveyor.sh53 cmake -B _bld "-G${PRJ_GEN}" ${TARGET:-} ${options} \
71 if ! cmake --build _bld --config "${PRJ_CFG}" --parallel 2 -- ${BUILD_OPT:-}; then
99 …nmake -f Makefile.vc mode=dll VC=14 "SSL_PATH=${openssl_root_win}" WITH_SSL=dll MACHINE=x64 DEBUG=…
111 …nmake -f Makefile.vc mode=dll VC=14.10 "SSL_PATH=${openssl_root_win}" WITH_SSL=dll MACHINE=x64 DEB…
130 cmake --build _bld --config "${PRJ_CFG}" --parallel 2 --target testdeps
144 cmake --build _bld --config "${PRJ_CFG}" --target test-ci
158 cmake --build _bld --config "${PRJ_CFG}" --parallel 2 --target curl-examples
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/
DBUILDING.md17 $ [sudo] apt-get install cmake
44 If you plan to build using CMake, follow the instructions from https://cmake.org/download/
57 To prepare for cmake + Microsoft Visual C++ compiler build
60 - Install [CMake](https://cmake.org/download/).
87 with something else than `bazel` (e.g. `cmake`).
93 we recommend building using `bazel` or `cmake`.
124 $ mkdir -p cmake/build
125 $ cd cmake/build
126 $ cmake ../..
130 If you want to build shared libraries (`.so` files), run `cmake` with `-DBUILD_SHARED_LIBS=ON`.
[all …]
/aosp_15_r20/external/grpc-grpc/
H A DBUILDING.md17 $ [sudo] apt-get install cmake
44 If you plan to build using CMake, follow the instructions from https://cmake.org/download/
57 To prepare for cmake + Microsoft Visual C++ compiler build
60 - Install [CMake](https://cmake.org/download/).
87 with something else than `bazel` (e.g. `cmake`).
93 we recommend building using `bazel` or `cmake`.
127 $ mkdir -p cmake/build
128 $ cd cmake/build
129 $ cmake ../..
133 If you want to build shared libraries (`.so` files), run `cmake` with `-DBUILD_SHARED_LIBS=ON`.
[all …]
/aosp_15_r20/bionic/docs/
H A Dmte.md32 memory safety issues. The [NDK legacy cmake toolchain] and the
33 [NDK new cmake toolchain] both support "memtag" as an argument for
49 Both of the above are controlled by the linker flag `--android-memtag-mode`
55 `-fsanitize-memtag-mode` allows to choose between ASYNC and SYNC.
80 It also does work related to stack tagging and permissive mode, which will be
192 Permissive MTE refers to a mode which, instead of crashing the process on an
197 This mode is only available for system services, not apps. It is implemented
205 When a system service [crashes in ASYNC mode], we set an impossible signal
213 [NDK legacy cmake toolchain]: https://android.googlesource.com/platform/ndk/+/refs/heads/main/build…
214 [NDK new cmake toolchain]: https://android.googlesource.com/platform/ndk/+/refs/heads/main/build/cm…
[all …]

12345678910>>...14