Searched full:cmake (Results 1 – 25 of 3453) sorted by relevance
12345678910>>...139
| /external/llvm/docs/ |
| D | CMakePrimer.rst | 2 CMake Primer 10 anyone affiliated with the CMake project. This document may contain 18 The LLVM project and many of the core projects built on LLVM build using CMake. 19 This document aims to provide a brief overview of CMake for developers modifying 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>`_. 29 CMake is a tool that reads script files in its own language that describe how a 30 software project builds. As CMake evaluates the scripts it constructs an 32 fully processed, if there are no errors, CMake will generate build files to [all …]
|
| /external/cronet/third_party/libc++/src/utils/ci/ |
| D | run-buildbot | 36 CC The C compiler to use, this value is used by CMake. This 39 CXX The C++ compiler to use, this value is used by CMake. This 42 CMAKE The CMake binary to use. This variable is optional. 92 # If we can find Ninja/CMake provided by Xcode, use those since we know their 94 # knows about -std=c++20, the CMake bundled in Xcode will probably know about 101 # TODO MODULES Is this still needed when CMake has libc++ module support? 107 if [ -z "${CMAKE}" ]; then 108 if xcrun --find cmake &>/dev/null; then 109 CMAKE="$(xcrun --find cmake)" 111 CMAKE="cmake" [all …]
|
| /external/curl/docs/ |
| D | INSTALL-CMAKE.md | 7 # Building with CMake 10 from source code using the CMake build tool. To build with CMake, you of 11 course first have to install CMake. The minimum required version of CMake is 13 tree. Once the correct version of CMake is installed you can follow the 16 CMake builds can be configured either from the command line, or from one of 17 CMake's GUIs. 19 # Current flaws in the curl CMake build 21 Missing features in the CMake build: 38 A CMake configuration of curl is similar to the autotools build of curl. 41 ## Using `cmake` [all …]
|
| /external/pigweed/pw_build/ |
| D | cmake.rst | 1 .. _module-pw_build-cmake: 3 CMake title 8 Pigweed's `CMake`_ support is provided primarily for projects that have an 9 existing CMake build and wish to integrate Pigweed without switching to a new 13 To run upstream Pigweed's CMake build use the ``pw build`` command: 19 This will install any required packages, generate cmake build files and invkoke ninja. 27 …cmake --fresh --debug-output -DCMAKE_MESSAGE_LOG_LEVEL=WARNING -S . -B ./out/cmake -G Ninja -DCMAK… 28 …19:37:10 INF [1/1] Run ==> ninja -C out/cmake pw_apps pw_run_tests.modules pw_run_tests.pw_bluetoo… 37 CMake functions 39 CMake convenience functions are defined in ``pw_build/pigweed.cmake``. [all …]
|
| /external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/ |
| D | cmake.yml | 1 name: CI CMake 4 ci-cmake: 20 cmake-args: -DWITH_SANITIZER=Address 27 cmake-args: -DWITH_BENCHMARKS=ON 34 cmake-args: -DZLIB_SYMBOL_PREFIX=zTest_ 41 cmake-args: -DZLIB_COMPAT=ON -DZLIB_SYMBOL_PREFIX=zTest_ 57 cmake-args: -DWITH_UNALIGNED=OFF -DWITH_SANITIZER=Undefined 65 …cmake-args: -DCMAKE_C_FLAGS=-m32 -DCMAKE_CXX_FLAGS=-m32 -DCMAKE_SHARED_LINKER_FLAGS=-m32 -DCMAKE_E… 73 cmake-args: -DWITH_OPTIM=OFF -DHAVE_BUILTIN_CTZLL=OFF 80 cmake-args: -DWITH_OPTIM=OFF -DHAVE_BUILTIN_CTZLL=OFF -DHAVE_BUILTIN_CTZ=OFF [all …]
|
| /external/libwebsockets/ |
| D | .sai.json | 9 …server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && make -j4 … 12 …server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && make -j4 … 15 …server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && make -j4 … 18 …server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && make -j4 … 21 …server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && make -j4 … 24 …server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && make -j4 … 28 …server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && make -j4 … 31 …server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G DEB\";cmake .. ${cmake} && make -j4 … 34 …server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G RPM\";cmake .. ${cmake} && make -j4 … 37 …server/plugins:../destdir/usr/local/lib;export SAI_CPACK=\"-G ZIP\";cmake .. ${cmake} && make -j4 … [all …]
|
| /external/tensorflow/tensorflow/lite/g3doc/guide/ |
| D | build_cmake.md | 1 # Build TensorFlow Lite with CMake 4 [CMake](https://cmake.org/) tool. 12 ### Step 1. Install CMake tool 14 It requires CMake 3.16 or higher. On Ubuntu, you can simply run the following 18 sudo apt-get install cmake 22 [the official cmake installation guide](https://cmake.org/install/) 33 ### Step 3. Create CMake build directory 40 ### Step 4. Run CMake tool with configurations 48 cmake ../tensorflow_src/tensorflow/lite 57 cmake ../tensorflow_src/tensorflow/lite -DCMAKE_BUILD_TYPE=Debug [all …]
|
| /external/libultrahdr/.github/workflows/ |
| D | cmake.yml | 1 name: CMake 15 - name: ubuntu-latest-gcc-cmake 19 build-system: cmake 20 cmake-opts: '-DUHDR_BUILD_TESTS=1 -DUHDR_ENABLE_INSTALL=0 -DUHDR_BUILD_FUZZERS=0' 22 - name: ubuntu-latest-gcc-cmake-deps 26 build-system: cmake 27 …cmake-opts: '-DUHDR_BUILD_TESTS=1 -DUHDR_ENABLE_INSTALL=0 -DUHDR_BUILD_FUZZERS=0 -DUHDR_BUILD_DEPS… 29 - name: ubuntu-latest-clang-cmake 33 build-system: cmake 34 cmake-opts: '-DUHDR_BUILD_TESTS=1 -DUHDR_ENABLE_INSTALL=0 -DUHDR_BUILD_FUZZERS=0' [all …]
|
| /external/aws-crt-java/ |
| D | pom.xml | 35 <cmake.command>cmake</cmake.command> 36 <cmake.buildtype>RelWithDebInfo</cmake.buildtype> 37 <cmake.buildconfig>${cmake.buildtype}</cmake.buildconfig> 38 <cmake.binaries>target/cmake-build</cmake.binaries> 42 <cmake.warningsareerrors>OFF</cmake.warningsareerrors> 43 <cmake.s2nNoPqAsm>OFF</cmake.s2nNoPqAsm> 44 <cmake.osx_arch>-DOSX_ARCH_DUMMY=1</cmake.osx_arch> 45 <cmake.min_osx_version>-DOSX_DEPLOYMENT_TARGET_DUMMY=1</cmake.min_osx_version> 46 <cmake.disable_perl>ON</cmake.disable_perl> 47 <cmake.disable_aws_lc_512avx>OFF</cmake.disable_aws_lc_512avx> [all …]
|
| /external/zstd/build/cmake/ |
| D | README.md | 1 # Cmake contributions 3 Contributions to the cmake build configurations are welcome. Please 4 use case sensitivity that matches modern (i.e. cmake version 2.6 and above) 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 …]
|
| /external/grpc-grpc/test/distrib/cpp/ |
| D | run_distrib_test_cmake.bat | 39 mkdir third_party\abseil-cpp\cmake\build 40 pushd third_party\abseil-cpp\cmake\build 41 cmake -G %VS_GENERATOR% -A %VS_ARCHITECTURE% -DCMAKE_INSTALL_PREFIX=%INSTALL_DIR% ..\.. 42 cmake --build . --config Release --target install || goto :error 46 mkdir third_party\cares\cares\cmake\build 47 pushd third_party\cares\cares\cmake\build 48 cmake -G %VS_GENERATOR% -A %VS_ARCHITECTURE% -DCMAKE_INSTALL_PREFIX=%INSTALL_DIR% ..\.. 49 cmake --build . --config Release --target install || goto :error 53 mkdir third_party\protobuf\cmake\build 54 pushd third_party\protobuf\cmake\build [all …]
|
| D | run_distrib_test_cmake_for_dll.bat | 39 mkdir third_party\abseil-cpp\cmake\build 40 pushd third_party\abseil-cpp\cmake\build 41 cmake -G %VS_GENERATOR% -A %VS_ARCHITECTURE% -DCMAKE_INSTALL_PREFIX=%INSTALL_DIR% ..\.. 42 cmake --build . --config Release --target install || goto :error 46 mkdir third_party\cares\cares\cmake\build 47 pushd third_party\cares\cares\cmake\build 48 cmake -G %VS_GENERATOR% -A %VS_ARCHITECTURE% -DCMAKE_INSTALL_PREFIX=%INSTALL_DIR% ..\.. 49 cmake --build . --config Release --target install || goto :error 53 mkdir third_party\protobuf\cmake\build 54 pushd third_party\protobuf\cmake\build [all …]
|
| /external/rust/crates/grpcio-sys/grpc/test/distrib/cpp/ |
| D | run_distrib_test_cmake.bat | 39 mkdir third_party\abseil-cpp\cmake\build 40 pushd third_party\abseil-cpp\cmake\build 41 cmake -G %VS_GENERATOR% -A %VS_ARCHITECTURE% -DCMAKE_INSTALL_PREFIX=%INSTALL_DIR% ..\.. 42 cmake --build . --config Release --target install || goto :error 46 mkdir third_party\cares\cares\cmake\build 47 pushd third_party\cares\cares\cmake\build 48 cmake -G %VS_GENERATOR% -A %VS_ARCHITECTURE% -DCMAKE_INSTALL_PREFIX=%INSTALL_DIR% ..\.. 49 cmake --build . --config Release --target install || goto :error 53 mkdir third_party\protobuf\cmake\build 54 pushd third_party\protobuf\cmake\build [all …]
|
| /external/deqp-deps/SPIRV-Headers/.github/workflows/ |
| D | presubmit.yml | 26 cmake -DCMAKE_INSTALL_PREFIX=install .. 27 cmake --build . --target install 33 cmake .. 34 cmake --build . --target install 46 - uses: lukka/get-cmake@latest 49 - name: CMake build 51 …cmake -S . -B build/ -D CMAKE_BUILD_TYPE=Debug -G "Ninja" -D CMAKE_INSTALL_PREFIX=${GITHUB_WORKSPA… 52 cmake --build build --target install 58 - uses: lukka/get-cmake@latest 59 - name: CMake build [all …]
|
| /external/swiftshader/third_party/SPIRV-Headers/.github/workflows/ |
| D | presubmit.yml | 26 cmake -DCMAKE_INSTALL_PREFIX=install .. 27 cmake --build . --target install 33 cmake .. 34 cmake --build . --target install 46 - uses: lukka/get-cmake@latest 49 - name: CMake build 51 …cmake -S . -B build/ -D CMAKE_BUILD_TYPE=Debug -G "Ninja" -D CMAKE_INSTALL_PREFIX=${GITHUB_WORKSPA… 52 cmake --build build --target install 58 - uses: lukka/get-cmake@latest 59 - name: CMake build [all …]
|
| /external/angle/third_party/spirv-headers/src/.github/workflows/ |
| D | presubmit.yml | 26 cmake -DCMAKE_INSTALL_PREFIX=install .. 27 cmake --build . --target install 33 cmake .. 34 cmake --build . --target install 46 - uses: lukka/get-cmake@latest 49 - name: CMake build 51 …cmake -S . -B build/ -D CMAKE_BUILD_TYPE=Debug -G "Ninja" -D CMAKE_INSTALL_PREFIX=${GITHUB_WORKSPA… 52 cmake --build build --target install 58 - uses: lukka/get-cmake@latest 59 - name: CMake build [all …]
|
| /external/sdv/vsomeip/third_party/boost/assert/ |
| D | appveyor.yml | 29 CMAKE: 1 31 CMAKE: 1 33 CMAKE: 1 50 - git submodule update --init tools/cmake 61 …- if "%CMAKE%%CMAKE_SUBDIR%%CMAKE_INSTALL%" == "" b2 -j 3 libs/assert/test toolset=%TOOLSET% %CXX… 63 - if not "%CMAKE%" == "" mkdir __build__ && cd __build__ 64 …- if not "%CMAKE%" == "" cmake -DBOOST_ENABLE_CMAKE=1 -DBoost_VERBOSE=1 -DBOOST_INCLUDE_LIBRARIES… 65 - if not "%CMAKE%" == "" ctest --output-on-failure -R boost_assert -C Debug 66 - if not "%CMAKE%" == "" ctest --output-on-failure -R boost_assert -C Release 67 - if not "%CMAKE%" == "" ctest --output-on-failure -R boost_assert -C MinSizeRel [all …]
|
| /external/libwebm/ |
| D | README.libwebm | 3 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 10 CMake Basics 13 run cmake with the path to the libwebm repo: 15 $ cmake path/to/libwebm 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 28 $ cmake path/to/libwebm -G Xcode 33 $ cmake path/to/libwebm -G "Visual Studio 12" 37 $ cmake path/to/libwebm "Visual Studio 12 Win64" [all …]
|
| /external/libopus/cmake/ |
| D | README.md | 1 # Using CMake for the Opus Project 3 …s guide provides instructions for using CMake to build the Opus project with various configuration… 5 …CMake documentation for the most up-to-date and accurate information. You can find the official CM… 11 - CMake 17 Follow the steps below to build the Opus project using CMake: 33 3. Configure the build with CMake. You can set the desired configuration options using CMake's `-D`… 43 cmake .. -DOPUS_BUILD_PROGRAMS=ON -DOPUS_BUILD_TESTING=ON 49 cmake --build . 56 …ness of the project. You can execute the tests using CTest, a part of the CMake build system. CTes… 60 1. Navigate to the build directory after configuring and building the project with CMake: [all …]
|
| /external/private-join-and-compute/third_party/abseil-cpp-20230125.2/CMake/ |
| D | README.md | 1 # Abseil CMake Build Instructions 3 Abseil comes with a CMake build script ([CMakeLists.txt](../CMakeLists.txt)) 5 If you don't have CMake installed already, you can download it for free from 6 <https://www.cmake.org/>. 8 CMake works by generating native makefiles or build projects that can 14 ## Incorporating Abseil Into a CMake Project 16 The recommendations below are similar to those for using CMake within the 18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>) 23 [Google Test](https://github.com/google/googletest) into your CMake 26 project with CMake. [all …]
|
| /external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/CMake/ |
| D | README.md | 1 # Abseil CMake Build Instructions 3 Abseil comes with a CMake build script ([CMakeLists.txt](../CMakeLists.txt)) 5 If you don't have CMake installed already, you can download it for free from 6 <https://www.cmake.org/>. 8 CMake works by generating native makefiles or build projects that can 14 ## Incorporating Abseil Into a CMake Project 16 The recommendations below are similar to those for using CMake within the 18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>) 23 [Google Test](https://github.com/google/googletest) into your CMake 26 project with CMake. [all …]
|
| /external/webrtc/third_party/abseil-cpp/CMake/ |
| D | README.md | 1 # Abseil CMake Build Instructions 3 Abseil comes with a CMake build script ([CMakeLists.txt](../CMakeLists.txt)) 5 If you don't have CMake installed already, you can download it for free from 6 <https://www.cmake.org/>. 8 CMake works by generating native makefiles or build projects that can 14 ## Incorporating Abseil Into a CMake Project 16 The recommendations below are similar to those for using CMake within the 18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>) 23 [Google Test](https://github.com/google/googletest) into your CMake 26 project with CMake. [all …]
|
| /external/angle/third_party/abseil-cpp/CMake/ |
| D | README.md | 1 # Abseil CMake Build Instructions 3 Abseil comes with a CMake build script ([CMakeLists.txt](../CMakeLists.txt)) 5 If you don't have CMake installed already, you can download it for free from 6 <https://www.cmake.org/>. 8 CMake works by generating native makefiles or build projects that can 14 ## Incorporating Abseil Into a CMake Project 16 The recommendations below are similar to those for using CMake within the 18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>) 23 [Google Test](https://github.com/google/googletest) into your CMake 26 project with CMake. [all …]
|
| /external/tensorflow/third_party/absl/abseil-cpp/CMake/ |
| D | README.md | 1 # Abseil CMake Build Instructions 3 Abseil comes with a CMake build script ([CMakeLists.txt](../CMakeLists.txt)) 5 If you don't have CMake installed already, you can download it for free from 6 <https://www.cmake.org/>. 8 CMake works by generating native makefiles or build projects that can 14 ## Incorporating Abseil Into a CMake Project 16 The recommendations below are similar to those for using CMake within the 18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>) 23 [Google Test](https://github.com/google/googletest) into your CMake 26 project with CMake. [all …]
|
| /external/libtextclassifier/abseil-cpp/CMake/ |
| D | README.md | 1 # Abseil CMake Build Instructions 3 Abseil comes with a CMake build script ([CMakeLists.txt](../CMakeLists.txt)) 5 If you don't have CMake installed already, you can download it for free from 6 <https://www.cmake.org/>. 8 CMake works by generating native makefiles or build projects that can 14 ## Incorporating Abseil Into a CMake Project 16 The recommendations below are similar to those for using CMake within the 18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>) 23 [Google Test](https://github.com/google/googletest) into your CMake 26 project with CMake. [all …]
|
12345678910>>...139