Home
last modified time | relevance | path

Searched +refs:cmake +refs:command +refs:run +refs:help (Results 1 – 25 of 170) sorted by relevance

1234567

/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 …]
/aosp_15_r20/external/openscreen/third_party/abseil/src/CMake/
H A DREADME.md6 <https://www.cmake.org/>.
18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>)
30 3. You can then use the CMake command
31 [`add_subdirectory()`](https://cmake.org/cmake/help/latest/command/add_subdirectory.html)
35 [`target_link_libraries()`](https://cmake.org/cmake/help/latest/command/target_link_libraries.html)
39 ```cmake
55 …_RUN_TESTS=ON` flag to run Abseil tests. Note that if the `-DBUILD_TESTING=OFF` flag is passed th…
64 https://github.com/google/googletest/blob/master/googletest/README.md#using-cmake
67 For example, to run just the Abseil tests, you could use this script:
73 cmake -DABSL_USE_GOOGLETEST_HEAD=ON -DABSL_RUN_TESTS=ON ..
[all …]
/aosp_15_r20/external/protobuf/cmake/
H A DREADME.md5 You need to have [CMake](http://www.cmake.org), [Visual Studio](https://www.visualstudio.com)
31 If *cmake* command is not available from *Command Prompt*, add it to system *PATH* variable:
35 If *git* command is not available from *Command Prompt*, add it to system *PATH* variable:
83 [generators](http://www.cmake.org/cmake/help/latest/manual/cmake-generators.7.html)
88 * [Makefile](http://www.cmake.org/cmake/help/latest/manual/cmake-generators.7.html#makefile-generat…
91 * [Visual Studio](http://www.cmake.org/cmake/help/latest/manual/cmake-generators.7.html#visual-stud…
94 * [Ninja](https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html#ninja-generator)
98 …directly CMake-based projects](https://docs.microsoft.com/en-us/cpp/build/cmake-projects-in-visual…
114 C:\Path\to\build\protobuf\release>cmake -G "NMake Makefiles" ^
124 C:\Path\to\build\protobuf\debug>cmake -G "Ninja" ^
[all …]
/aosp_15_r20/external/cronet/third_party/protobuf/cmake/
H A DREADME.md5 You need to have [CMake](http://www.cmake.org), [Visual Studio](https://www.visualstudio.com)
31 If *cmake* command is not available from *Command Prompt*, add it to system *PATH* variable:
35 If *git* command is not available from *Command Prompt*, add it to system *PATH* variable:
83 [generators](http://www.cmake.org/cmake/help/latest/manual/cmake-generators.7.html)
88 * [Makefile](http://www.cmake.org/cmake/help/latest/manual/cmake-generators.7.html#makefile-generat…
91 * [Visual Studio](http://www.cmake.org/cmake/help/latest/manual/cmake-generators.7.html#visual-stud…
94 * [Ninja](https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html#ninja-generator)
98 …directly CMake-based projects](https://docs.microsoft.com/en-us/cpp/build/cmake-projects-in-visual…
114 C:\Path\to\build\protobuf\release>cmake -G "NMake Makefiles" ^
124 C:\Path\to\build\protobuf\debug>cmake -G "Ninja" ^
[all …]
/aosp_15_r20/external/libwebm/
H A DREADME.libwebm3 To build libwebm you must first create project files. To do this run cmake
6 Makefile.unix can be used as a fallback on systems that cmake does not
13 run cmake with the path to the libwebm repo:
15 $ cmake path/to/libwebm
17 On Windows the above command will produce Visual Studio project files for the
19 above command will produce a makefile.
22 the cmake command line. This argument must be followed by the name of a
23 generator. Running cmake with the --help argument will list the available
26 On Mac OS X you would run the following command to generate Xcode projects:
28 $ cmake path/to/libwebm -G Xcode
[all …]
/aosp_15_r20/external/clang/docs/
H A DLibTooling.rst15 Tools built with LibTooling, like Clang Plugins, run ``FrontendActions`` over
26 If you ever wanted to run a ``FrontendAction`` over some sample code, for
35 // runToolOnCode returns whether the action was correctly run over the
45 to run clang, it first needs to figure out what command line arguments to use
48 of them depending on command-line options. There's the ``CommonOptionsParser``
49 class that takes the responsibility to parse command-line parameters related to
55 ``CompilationDatabase`` can be read from a build directory or the command line.
57 command line, specification of build path using the ``-p`` command-line option,
67 // Apply a custom category to all command-line options so that they are the
83 Once we have a ``CompilationDatabase``, we can create a ``ClangTool`` and run
[all …]
/aosp_15_r20/external/executorch/examples/xnnpack/
H A DREADME.md3 …ork operators for ARM and x86 CPU platforms. Our delegate lowers models to run using these highly …
20 The following command will produce a floating-point XNNPACK delegated model `mv2_xnnpack_fp32.pte` …
27 …(pte) file, then let's run it with ExecuTorch runtime using the `xnn_executor_runner`. With cmake,…
33 # Get a clean cmake-out directory
34 rm -rf cmake-out
35 mkdir cmake-out
37 # Configure cmake
38 cmake \
39 -DCMAKE_INSTALL_PREFIX=cmake-out \
53 cmake --build cmake-out -j9 --target install --config Release
[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).
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).
77 ## Create and run a binary
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).
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).
77 ## Create and run a binary
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).
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).
77 ## Create and run a binary
103 ```cmake
123 [`GoogleTest` CMake module](https://cmake.org/cmake/help/git-stage/module/GoogleTest.html).
[all …]
/aosp_15_r20/external/llvm/docs/
H A DCMake.rst11 `CMake <http://www.cmake.org/>`_ is a cross-platform build-generator tool. CMake
34 We use here the command-line, non-interactive CMake interface.
36 #. `Download <http://www.cmake.org/cmake/resources/software.html>`_ and install
50 #. Execute this command in the shell replacing `path/to/llvm/source/root` with
55 $ cmake path/to/llvm/source/root
75 $ cmake --build .
77 The ``--build`` option tells ``cmake`` to invoke the underlying build
87 $ cmake --build . --target install
90 the ``--build`` option tells ``cmake`` to build the ``install`` target.
93 by invoking the ``cmake_install.cmake`` script generated in the
[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 …]
/aosp_15_r20/external/abseil-cpp/CMake/
H A DREADME.md6 <https://www.cmake.org/>.
18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>)
32 3. You can then use the CMake command
33 [`add_subdirectory()`](https://cmake.org/cmake/help/latest/command/add_subdirectory.html)
37 [`target_link_libraries()`](https://cmake.org/cmake/help/latest/command/target_link_libraries.html)
41 ```cmake
64 ```cmake
96 Use the `-DABSL_BUILD_TESTING=ON` flag to run Abseil tests. Note that
106 https://github.com/google/googletest/blob/master/googletest/README.md#using-cmake
109 For example, to run just the Abseil tests, you could use this script:
[all …]
/aosp_15_r20/external/webrtc/third_party/abseil-cpp/CMake/
H A DREADME.md6 <https://www.cmake.org/>.
18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>)
32 3. You can then use the CMake command
33 [`add_subdirectory()`](https://cmake.org/cmake/help/latest/command/add_subdirectory.html)
37 [`target_link_libraries()`](https://cmake.org/cmake/help/latest/command/target_link_libraries.html)
41 ```cmake
64 ```cmake
96 Use the `-DABSL_BUILD_TESTING=ON` flag to run Abseil tests. Note that
106 https://github.com/google/googletest/blob/master/googletest/README.md#using-cmake
109 For example, to run just the Abseil tests, you could use this script:
[all …]
/aosp_15_r20/external/angle/third_party/abseil-cpp/CMake/
H A DREADME.md6 <https://www.cmake.org/>.
18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>)
32 3. You can then use the CMake command
33 [`add_subdirectory()`](https://cmake.org/cmake/help/latest/command/add_subdirectory.html)
37 [`target_link_libraries()`](https://cmake.org/cmake/help/latest/command/target_link_libraries.html)
41 ```cmake
64 ```cmake
96 Use the `-DABSL_BUILD_TESTING=ON` flag to run Abseil tests. Note that
106 https://github.com/google/googletest/blob/master/googletest/README.md#using-cmake
109 For example, to run just the Abseil tests, you could use this script:
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/CMake/
DREADME.md6 <https://www.cmake.org/>.
18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>)
32 3. You can then use the CMake command
33 [`add_subdirectory()`](https://cmake.org/cmake/help/latest/command/add_subdirectory.html)
37 [`target_link_libraries()`](https://cmake.org/cmake/help/latest/command/target_link_libraries.html)
41 ```cmake
64 ```cmake
96 Use the `-DABSL_BUILD_TESTING=ON` flag to run Abseil tests. Note that
106 https://github.com/google/googletest/blob/master/googletest/README.md#using-cmake
109 For example, to run just the Abseil tests, you could use this script:
[all …]
/aosp_15_r20/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/CMake/
H A DREADME.md6 <https://www.cmake.org/>.
18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>)
32 3. You can then use the CMake command
33 [`add_subdirectory()`](https://cmake.org/cmake/help/latest/command/add_subdirectory.html)
37 [`target_link_libraries()`](https://cmake.org/cmake/help/latest/command/target_link_libraries.html)
41 ```cmake
64 ```cmake
96 Use the `-DABSL_BUILD_TESTING=ON` flag to run Abseil tests. Note that
106 https://github.com/google/googletest/blob/master/googletest/README.md#using-cmake
109 For example, to run just the Abseil tests, you could use this script:
[all …]
/aosp_15_r20/external/cronet/third_party/abseil-cpp/CMake/
H A DREADME.md6 <https://www.cmake.org/>.
18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>)
32 3. You can then use the CMake command
33 [`add_subdirectory()`](https://cmake.org/cmake/help/latest/command/add_subdirectory.html)
37 [`target_link_libraries()`](https://cmake.org/cmake/help/latest/command/target_link_libraries.html)
41 ```cmake
64 ```cmake
96 Use the `-DABSL_BUILD_TESTING=ON` flag to run Abseil tests. Note that
106 https://github.com/google/googletest/blob/master/googletest/README.md#using-cmake
109 For example, to run just the Abseil tests, you could use this script:
[all …]
/aosp_15_r20/external/libopus/cmake/
H A DREADME.md5 …ation. You can find the official CMake documentation at [cmake.org/documentation](https://cmake.or…
40 For example, to enable the custom modes and build programs, use the following command:
43 cmake .. -DOPUS_BUILD_PROGRAMS=ON -DOPUS_BUILD_TESTING=ON
49 cmake --build .
58 To run the Opus tests using CTest, follow these steps:
92 When reporting an issue, please provide the following information to help us understand and reprodu…
95 2. Steps to reproduce the problem, including the CMake command and any specific configuration optio…
103 We appreciate your help in identifying and addressing any configuration-related problems, ensuring …
112 cmake .. -DCMAKE_TOOLCHAIN_FILE=${ANDROID_HOME}/ndk/25.2.9519653/build/cmake/android.toolchain.cmak…
115 …the [Cross compiling for Android documentation](https://cmake.org/cmake/help/latest/manual/cmake-t…
[all …]
/aosp_15_r20/external/executorch/docs/source/
H A Druntime-build-and-cross-compilation.md3 ExecuTorch uses [CMake](https://cmake.org/) as its primary build system.
5 …ke, Ninja or Xcode. For information, see [cmake-generators(7)](https://cmake.org/cmake/help/latest…
34 - Run `conda install cmake` or `pip install cmake`.
46 # Clean cmake cache directory (cmake-out). It's a good practice to do this
73 # `cmake-out` directory.
74 cmake "$CMAKE_FLAGS" -Bcmake-out .
79 cmake --build cmake-out -j9
88 Then, pass it to the command line tool:
91 ./cmake-out/executor_runner --model_path path/to/add.pte
118 Assuming Android NDK is available, run:
[all …]
/aosp_15_r20/prebuilts/cmake/linux-x86/share/cmake-3.22/Modules/
DCheckFortranSourceRuns.cmake2 # file Copyright.txt or https://cmake.org/licensing for details.
11 subsequently be run.
13 .. command:: check_fortran_source_runs
15 .. code-block:: cmake
21 file, linked as an executable and then run. The ``<code>`` must be a Fortran program
24 .. code-block:: cmake
28 This command can help avoid costly build processes when a compiler lacks support
34 If the ``<code>`` could be built and run
42 The underlying check is performed by the :command:`try_run` command. The
50 command before the contents of ``CMAKE_REQUIRED_FLAGS``.
[all …]
/aosp_15_r20/external/deqp/external/openglcts/
H A DREADME.md4 This document describes how to build, port, and run the OpenGL and OpenGL ES
35 - [Command line options](#command-line-options)
44 - [Crashes early on in the run](#crashes-early-on-in-the-run)
68 2. Build a test executable and run it against your implementation to produce
82 The reader is assumed to be a fluent programmer experienced with command line
132 file `targets/my_target/my_target.cmake`.
147 |android | Used in Android build. Requires use of suitable toolchain file (see `cmake/` directory) |
155 **Example target file (targets/null/null.cmake):**
179 are loaded at run-time by default for OpenGL ES APIs. EGL always requires link
180 libraries. OpenGL always uses run-time loading.
[all …]
/aosp_15_r20/external/tensorflow/tensorflow/lite/g3doc/guide/
H A Dbuild_cmake.md4 [CMake](https://cmake.org/) tool.
14 It requires CMake 3.16 or higher. On Ubuntu, you can simply run the following
15 command.
18 sudo apt-get install cmake
22 [the official cmake installation guide](https://cmake.org/install/)
45 your workstation, simply run the following command.
48 cmake ../tensorflow_src/tensorflow/lite
57 cmake ../tensorflow_src/tensorflow/lite -DCMAKE_BUILD_TYPE=Debug
62 In order to be able to run kernel tests, you need to provide
67 cmake ../tensorflow_src/tensorflow/lite -DTFLITE_KERNEL_TEST=on
[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
59 If you're using [Atom](https://atom.io/), the following packages can help.
62 apm install autocomplete-clang build build-cmake clang-format language-cmake \
71 apm install autocomplete-plus build build-cmake clang-format language-cmake \
82 cmake -DCRC32C_BUILD_TESTS=0 -DCRC32C_BUILD_BENCHMARKS=0 .. && make all install
88 The following command (when executed from `build/`) (re)builds the project and
92 cmake .. && cmake --build . && ctest --output-on-failure
98 The following command builds the project against the Android NDK, which is
102 cmake .. -DCMAKE_SYSTEM_NAME=Android -DCMAKE_ANDROID_ARCH_ABI=arm64-v8a \
106 -DCMAKE_BUILD_TYPE=Release && cmake --build .
[all …]
/aosp_15_r20/external/executorch/examples/apple/mps/
H A DREADME.md16 The following command will lower the EdgeIR to MPS delegate:
22 To see all the options when exporting a model to MPS delegate, use the following command:
24 python3 -m examples.apple.mps.scripts.mps_example --help
27 Once we have the model binary file, then let's run it with the ExecuTorch runtime using the `mps_ex…
31 cmake -DCMAKE_INSTALL_PREFIX=cmake-out \
38 cmake --build cmake-out -j9 --target install --config Release
39 CMAKE_PREFIX_PATH="${PWD}/cmake-out/lib/cmake/ExecuTorch;${PWD}/cmake-out/third-party/gflags"
41 rm -rf cmake-out/examples/apple/mps
42 cmake \
49 cmake --build cmake-out/examples/apple/mps -j9 --config Release
[all …]

1234567