Home
last modified time | relevance | path

Searched full:cmake (Results 1 – 25 of 2600) sorted by relevance

12345678910>>...104

/external/llvm/docs/
DCMakePrimer.rst2 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 …]
DCMake.rst2 Building LLVM with CMake
11 `CMake <http://www.cmake.org/>`_ is a cross-platform build-generator tool. CMake
20 `Quick start`_ section. If you are a CMake novice, start with `Basic CMake usage`_
23 you already have experience with CMake, this is the recommended starting point.
25 This page is geared towards users of the LLVM CMake build. If you're looking for
26 information about modifying the LLVM CMake build system you may want to see the
27 :doc:`CMakePrimer` page. It has a basic overview of the CMake language.
34 We use here the command-line, non-interactive CMake interface.
36 #. `Download <http://www.cmake.org/cmake/resources/software.html>`_ and install
37 CMake. Version 3.4.3 is the minimum required.
[all …]
/external/llvm-project/llvm/docs/
DCMakePrimer.rst2 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/llvm-project/libcxx/utils/ci/
Drun-buildbot67 function generate-cmake() {
68 echo "--- Generating CMake"
69 cmake -S "${MONOREPO_ROOT}/llvm" \
92 # this to the Lit test suite instead of being a separate CMake target.
112 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx03.cmake"
120 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx11.cmake"
128 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx14.cmake"
136 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx17.cmake"
144 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-cxx2a.cmake"
152 generate-cmake -C "${MONOREPO_ROOT}/libcxx/cmake/caches/Generic-noexceptions.cmake"
[all …]
/external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/
Dcmake.yml1 name: CI CMake
4 ci-cmake:
55 cmake-args: -DWITH_SANITIZERS=ON
61 cmake-args: -DWITH_SANITIZERS=ON
70 cmake-args: -DZLIB_DUAL_LINK=ON
75 cmake-args: -DWITH_SANITIZERS=ON -DWITH_AVX2=OFF
81 cmake-args: -DWITH_SANITIZERS=ON -DWITH_SSE2=OFF
87 cmake-args: -DWITH_SANITIZERS=ON -DWITH_SSE4=OFF
93 cmake-args: -DWITH_SANITIZERS=ON -DWITH_PCLMULQDQ=OFF
99cmake-args: -DZLIB_COMPAT=ON -DWITH_NEW_STRATEGIES=OFF -DWITH_OPTIM=OFF -DWITH_SANITIZERS=ON
[all …]
/external/libxml2/
D.gitlab-ci.yml15 # cmake
58 .cmake:linux:
61 …- cmake -DBUILD_SHARED_LIBS=$BUILD_SHARED_LIBS -DCMAKE_INSTALL_PREFIX=libxml2-install -DCMAKE_BUIL…
62 - cmake --build libxml2-build --target install
75 cmake:linux:gcc:shared:
76 extends: .cmake:linux
84 cmake:linux:gcc:static:
85 extends: .cmake:linux
93 cmake:linux:clang:shared:
94 extends: .cmake:linux
[all …]
/external/zstd/build/cmake/
DREADME.md1 # Cmake contributions
3 Contributions to the cmake build configurations are welcome. Please
4 use case sensitivity that matches modern (ie. cmake version 2.6 and above)
10 As cmake doesn't support command like `cmake clean`, it's recommended to perform a "out of source b…
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/llvm-project/mlir/cmake/modules/
DCMakeLists.txt1 # Generate a list of CMake library targets so that other CMake projects can
2 # link against them. LLVM calls its version of this file LLVMExports.cmake, but
3 # the usual CMake convention seems to be ${Project}Targets.cmake.
4 set(MLIR_INSTALL_PACKAGE_DIR lib${LLVM_LIBDIR_SUFFIX}/cmake/mlir)
7 # Keep this in sync with llvm/cmake/CMakeLists.txt!
8 set(LLVM_INSTALL_PACKAGE_DIR lib${LLVM_LIBDIR_SUFFIX}/cmake/llvm)
12 export(TARGETS ${MLIR_EXPORTS} FILE ${mlir_cmake_builddir}/MLIRTargets.cmake)
19 # Generate MlirConfig.cmake for the build tree.
22 set(MLIR_CONFIG_EXPORTS_FILE "\${MLIR_CMAKE_DIR}/MLIRTargets.cmake")
28 ${CMAKE_CURRENT_SOURCE_DIR}/MLIRConfig.cmake.in
[all …]
/external/libwebm/
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
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/capstone/
DCOMPILE_CMAKE.TXT1 This documentation explains how to compile Capstone with CMake, focus on
10 This documentation requires CMake & Windows SDK or MS Visual Studio installed on
13 Get CMake for free from http://www.cmake.org.
20 run "cmake" with the unwanted archs disabled (set to 0) as followings.
22 - CAPSTONE_ARM_SUPPORT: support ARM. Run cmake with -DCAPSTONE_ARM_SUPPORT=0 to remove ARM.
23 …- CAPSTONE_ARM64_SUPPORT: support ARM64. Run cmake with -DCAPSTONE_ARM64_SUPPORT=0 to remove ARM64.
24 …- CAPSTONE_M680X_SUPPORT: support M680X. Run cmake with -DCAPSTONE_M680X_SUPPORT=0 to remove M680X.
25 - CAPSTONE_M68K_SUPPORT: support M68K. Run cmake with -DCAPSTONE_M68K_SUPPORT=0 to remove M68K.
26 - CAPSTONE_MIPS_SUPPORT: support Mips. Run cmake with -DCAPSTONE_MIPS_SUPPORT=0 to remove Mips.
27 …- CAPSTONE_MOS65XX_SUPPORT: support MOS65XX. Run cmake with -DCAPSTONE_MOS65XX_SUPPORT=0 to remove…
[all …]
/external/rust/crates/grpcio-sys/grpc/test/distrib/cpp/
Drun_distrib_test_cmake.bat33 mkdir third_party\abseil-cpp\cmake\build
34 pushd third_party\abseil-cpp\cmake\build
35 cmake -DCMAKE_INSTALL_PREFIX=%INSTALL_DIR% ..\..
36 cmake --build . --config Release --target install || goto :error
40 mkdir third_party\cares\cares\cmake\build
41 pushd third_party\cares\cares\cmake\build
42 cmake -DCMAKE_INSTALL_PREFIX=%INSTALL_DIR% ..\..
43 cmake --build . --config Release --target install || goto :error
47 mkdir third_party\protobuf\cmake\build
48 pushd third_party\protobuf\cmake\build
[all …]
Drun_distrib_test_cmake.sh24 mkdir -p "third_party/abseil-cpp/cmake/build"
25 pushd "third_party/abseil-cpp/cmake/build"
26 cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_POSITION_INDEPENDENT_CODE=TRUE ../..
34 mkdir -p "third_party/cares/cares/cmake/build"
35 pushd "third_party/cares/cares/cmake/build"
36 cmake -DCMAKE_BUILD_TYPE=Release ../..
41 mkdir -p "third_party/protobuf/cmake/build"
42 pushd "third_party/protobuf/cmake/build"
43 cmake -Dprotobuf_BUILD_TESTS=OFF -DCMAKE_BUILD_TYPE=Release ..
48 mkdir -p "third_party/re2/cmake/build"
[all …]
/external/llvm-project/clang/cmake/modules/
DCMakeLists.txt1 # Generate a list of CMake library targets so that other CMake projects can
2 # link against them. LLVM calls its version of this file LLVMExports.cmake, but
3 # the usual CMake convention seems to be ${Project}Targets.cmake.
4 set(CLANG_INSTALL_PACKAGE_DIR lib${LLVM_LIBDIR_SUFFIX}/cmake/clang)
7 # Keep this in sync with llvm/cmake/CMakeLists.txt!
8 set(LLVM_INSTALL_PACKAGE_DIR lib${LLVM_LIBDIR_SUFFIX}/cmake/llvm)
12 export(TARGETS ${CLANG_EXPORTS} FILE ${clang_cmake_builddir}/ClangTargets.cmake)
14 # Generate ClangConfig.cmake for the build tree.
17 set(CLANG_CONFIG_EXPORTS_FILE "${clang_cmake_builddir}/ClangTargets.cmake")
23 ${CMAKE_CURRENT_SOURCE_DIR}/ClangConfig.cmake.in
[all …]
/external/llvm-project/flang/cmake/modules/
DCMakeLists.txt1 # Generate a list of CMake library targets so that other CMake projects can
2 # link against them. LLVM calls its version of this file LLVMExports.cmake, but
3 # the usual CMake convention seems to be ${Project}Targets.cmake.
4 set(FLANG_INSTALL_PACKAGE_DIR lib${LLVM_LIBDIR_SUFFIX}/cmake/flang)
7 # Keep this in sync with llvm/cmake/CMakeLists.txt!
8 set(LLVM_INSTALL_PACKAGE_DIR lib${LLVM_LIBDIR_SUFFIX}/cmake/llvm)
12 export(TARGETS ${FLANG_EXPORTS} FILE ${flang_cmake_builddir}/FlangTargets.cmake)
14 # Generate FlangConfig.cmake for the build tree.
17 set(FLANG_CONFIG_EXPORTS_FILE "${flang_cmake_builddir}/FlangTargets.cmake")
23 ${CMAKE_CURRENT_SOURCE_DIR}/FlangConfig.cmake.in
[all …]
/external/llvm-project/lld/cmake/modules/
DCMakeLists.txt1 # Generate a list of CMake library targets so that other CMake projects can
2 # link against them. LLVM calls its version of this file LLVMExports.cmake, but
3 # the usual CMake convention seems to be ${Project}Targets.cmake.
4 set(LLD_INSTALL_PACKAGE_DIR lib${LLVM_LIBDIR_SUFFIX}/cmake/lld)
7 # Keep this in sync with llvm/cmake/CMakeLists.txt!
8 set(LLVM_INSTALL_PACKAGE_DIR lib${LLVM_LIBDIR_SUFFIX}/cmake/llvm)
12 export(TARGETS ${LLD_EXPORTS} FILE ${lld_cmake_builddir}/LLDTargets.cmake)
14 # Generate LLDConfig.cmake for the build tree.
17 set(LLD_CONFIG_EXPORTS_FILE "${lld_cmake_builddir}/LLDTargets.cmake")
23 ${CMAKE_CURRENT_SOURCE_DIR}/LLDConfig.cmake.in
[all …]
/external/llvm/cmake/modules/
DCMakeLists.txt1 set(LLVM_INSTALL_PACKAGE_DIR lib${LLVM_LIBDIR_SUFFIX}/cmake/llvm)
6 FILE ${llvm_cmake_builddir}/LLVMExports.cmake)
16 # Generate LLVMConfig.cmake for the build tree.
34 set(LLVM_CONFIG_EXPORTS_FILE "${llvm_cmake_builddir}/LLVMExports.cmake")
36 LLVMConfig.cmake.in
37 ${llvm_cmake_builddir}/LLVMConfig.cmake
45 FILES_MATCHING PATTERN *.cmake
50 # Generate LLVMConfig.cmake for the install tree.
52 # Compute the installation prefix from this LLVMConfig.cmake file location.
66 set(LLVM_CONFIG_EXPORTS_FILE "\${LLVM_CMAKE_DIR}/LLVMExports.cmake")
[all …]
/external/catch2/docs/
Dcmake-integration.md2 # CMake integration
5 [CMake target](#cmake-target)<br>
7 [CMake project options](#cmake-project-options)<br>
10 Because we use CMake to build Catch2, we also provide a couple of
13 1) Catch2 exports a (namespaced) CMake target
14 2) Catch2's repository contains CMake scripts for automatic registration
17 ## CMake target
19 Catch2's CMake build exports an interface target `Catch2::Catch2`. Linking
25 ```cmake
33 ```cmake
[all …]
/external/abseil-cpp/CMake/
DREADME.md1 # 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 project. To disable Abseil test…
24 `-DBUILD_TESTING=OFF` when configuring your project with CMake.
[all …]
/external/openscreen/third_party/abseil/src/CMake/
DREADME.md1 # 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 project. To disable Abseil test…
24 `-DBUILD_TESTING=OFF` when configuring your project with CMake.
[all …]
/external/libtextclassifier/abseil-cpp/CMake/
DREADME.md1 # 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 project. To disable Abseil test…
24 `-DBUILD_TESTING=OFF` when configuring your project with CMake.
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/CMake/
DREADME.md1 # 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 project. To disable Abseil test…
24 `-DBUILD_TESTING=OFF` when configuring your project with CMake.
[all …]
/external/webrtc/third_party/abseil-cpp/CMake/
DREADME.md1 # 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 project. To disable Abseil test…
24 `-DBUILD_TESTING=OFF` when configuring your project with CMake.
[all …]
/external/curl/docs/
DINSTALL.cmake7 How To Compile with CMake
9 Building with CMake
12 from source code using the CMake build tool. To build with CMake, you will
13 of course have to first install CMake. The minimum required version of
14 CMake is specified in the file CMakeLists.txt found in the top of the curl
15 source tree. Once the correct version of CMake is installed you can follow
18 CMake builds can be configured either from the command line, or from one
19 of CMake's GUI's.
21 Current flaws in the curl CMake build
24 Missing features in the cmake build:
[all …]
/external/libgav1/libgav1/
DCMakeLists.txt15 # libgav1 requires modern CMake.
33 "And re-run CMake from the libgav1_build directory.")
39 include("${libgav1_root}/cmake/libgav1_options.cmake")
61 include("${libgav1_examples}/libgav1_examples.cmake")
62 include("${libgav1_root}/cmake/libgav1_build_definitions.cmake")
63 include("${libgav1_root}/cmake/libgav1_cpu_detection.cmake")
64 include("${libgav1_root}/cmake/libgav1_flags.cmake")
65 include("${libgav1_root}/cmake/libgav1_helpers.cmake")
66 include("${libgav1_root}/cmake/libgav1_install.cmake")
67 include("${libgav1_root}/cmake/libgav1_intrinsics.cmake")
[all …]
/external/googletest/docs/
Dquickstart-cmake.md1 # Quickstart: Building with CMake
3 This tutorial aims to get you up and running with GoogleTest using CMake. If
14 * [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)
25 If you don't already have CMake installed, see the
26 [CMake installation guide](https://cmake.org/install).
34 CMake uses a file named `CMakeLists.txt` to configure the build system for a
45 GoogleTest. There are many ways to express dependencies in the CMake ecosystem;
47 [`FetchContent` CMake module](https://cmake.org/cmake/help/latest/module/FetchContent.html).
51 ```cmake
[all …]

12345678910>>...104