| /external/libdivsufsort/pkgconfig/ |
| CMakeLists.txt | 3 configure_file("${CMAKE_CURRENT_SOURCE_DIR}/libdivsufsort.pc.cmake" "${CMAKE_CURRENT_BINARY_DIR}/libdivsufsort.pc" @ONLY) 7 configure_file("${CMAKE_CURRENT_SOURCE_DIR}/libdivsufsort.pc.cmake" "${CMAKE_CURRENT_BINARY_DIR}/libdivsufsort64.pc" @ONLY)
|
| /external/llvm/ |
| configure | 6 echo "Please migrate to the CMake-based build system." 7 echo "For more information see: http://llvm.org/docs/CMake.html"
|
| /external/parameter-framework/upstream/cmake/ |
| FindLibXml2.cmake | 29 # Wrapper around the official FindLibXml2.cmake in order to provide imported targets. 31 # See: https://cmake.org/cmake/help/git-master/manual/cmake-developer.7.html#find-modules 32 # See: https://cmake.org/gitweb?p=cmake.git;a=blob;f=Modules/FindGLUT.cmake 33 # for a modern Find<package>.cmake example 34 # TODO: make a real FindLibXml2.cmake in order to upstream it. 36 # More info on how to write Find*.cmake on [all...] |
| /external/eigen/cmake/ |
| language_support.cmake | 0 # cmake/modules/language_support.cmake 7 # CMake bug 9220. 9 # On debian testing (cmake 2.6.2), I get return code zero when calling 10 # cmake the first time, but cmake crashes when running a second time 14 # CMake Error at /usr/share/cmake-2.6/Modules/CMakeFortranInformation.cmake:7 (GET_FILENAME_COMPONENT): 19 # My workaround is to invoke cmake twice. If both return codes are zero, [all...] |
| Eigen3Config.cmake.in | 1 # This file exports the Eigen3::Eigen CMake target which should be passed to the 6 include ("${CMAKE_CURRENT_LIST_DIR}/Eigen3Targets.cmake") 11 set (EIGEN3_USE_FILE "${CMAKE_CURRENT_LIST_DIR}/UseEigen3.cmake")
|
| /external/llvm/docs/ |
| 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>`_ [all...] |
| /external/freetype/builds/cmake/ |
| testbuild.sh | 12 # This script tests the CMake build. Simply run 14 # builds/cmake/testbuild.sh 18 # BUILD_SHARED_LIBS=1 builds/cmake/testbuild.sh 28 # - The variable BUILD_SHARED_LIBS will be forwarded to the CMake project 37 tmpdir=/tmp/freetype-cmake-testbuild 57 (set -x; cmake -H$ftdir \ 61 (set -x; cmake --build $tmpdir/ftb \ 65 (set -x; cmake $tmpdir/ftb \ 67 (set -x; cmake --build $tmpdir/ftb \ 77 project(freetype-cmake-testbuild [all...] |
| /external/google-benchmark/ |
| .travis-libcxx-setup.sh | 3 # Install a newer CMake version 4 curl -sSL https://cmake.org/files/v3.6/cmake-3.6.1-Linux-x86_64.sh -o install-cmake.sh 5 chmod +x install-cmake.sh 6 sudo ./install-cmake.sh --prefix=/usr/local --skip-license 20 cmake -DCMAKE_C_COMPILER=${C_COMPILER} -DCMAKE_CXX_COMPILER=${COMPILER} \
|
| /external/curl/docs/ |
| INSTALL.cmake | 7 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 buil [all...] |
| /external/gflags/ |
| .travis.yml | 1 # Ubuntu 14.04 Trusty support, to get newer cmake and compilers. 20 - mkdir out && cd out && cmake -D CMAKE_BUILD_TYPE=$CONFIG -D GFLAGS_BUILD_SHARED_LIBS=ON -D GFLAGS_BUILD_STATIC_LIBS=ON -D GFLAGS_BUILD_TESTING=ON .. && cmake --build . --config $CONFIG && ctest
|
| /external/swiftshader/third_party/LLVM/ |
| ZERO_CHECK.vcxproj.filters | 13 <Filter>CMake Rules</Filter>
16 <Filter>CMake Rules</Filter>
20 <Filter Include="CMake Rules">
|
| /external/capstone/ |
| COMPILE_CMAKE.TXT | 1 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 SystemZ, X86 & XCore), if you just need several selected archs, run "cmake" 23 - CAPSTONE_ARM_SUPPORT: support ARM. Run cmake with -DCAPSTONE_ARM_SUPPORT=0 to remove ARM. 24 - CAPSTONE_ARM64_SUPPORT: support ARM64. Run cmake with -DCAPSTONE_ARM64_SUPPORT=0 to remove ARM64. 25 - CAPSTONE_MIPS_SUPPORT: support Mips. Run cmake with -DCAPSTONE_MIPS_SUPPORT=0 to remove Mips. 26 - CAPSTONE_PPC_SUPPORT: support PPC. Run cmake with -DCAPSTONE_PPC_SUPPORT=0 to remove PPC. 27 - CAPSTONE_SPARC_SUPPORT: support Sparc. Run cmake with -DCAPSTONE_SPARC_SUPPORT=0 to remove Sparc [all...] |
| /external/boringssl/src/ |
| BUILDING.md | 5 * [CMake](https://cmake.org/download/) 2.8.11 or later is required. 13 If Perl is not found by CMake, it may be configured explicitly by setting 24 by CMake, it may be configured explicitly by setting 32 * [Go](https://golang.org/dl/) is required. If not found by CMake, the go 40 Using Ninja (note the 'N' is capitalized in the cmake invocation): 44 cmake -GNinja .. 51 cmake .. 54 You usually don't need to run `cmake` again after changing `CMakeLists.txt` 60 `cmake` to configure a release build [all...] |
| /external/boringssl/src/util/bot/ |
| UPDATING | 25 cmake-linux64.tar.gz: Download the latest CMake source tarball, found at 26 https://cmake.org/download/. Build it with: 28 ./bootstrap --prefix=$PWD/cmake-linux64 && make && make install 29 tar -czf cmake-linux64.tar.gz cmake-linux64/ 31 The current revision was built against cmake-3.10.0.tar.gz. 33 cmake-mac.tar.gz: Follow the same instructions as above on a Mac, but replace 34 cmake-linux64 with cmake-mac [all...] |
| /external/harfbuzz_ng/ |
| replace-enum-strings.cmake | 0 # CMake script to replace items
|
| /external/libdivsufsort/CMakeModules/ |
| ProjectCPack.cmake | 1 # If the cmake version includes cpack, use it 2 IF(EXISTS "${CMAKE_ROOT}/Modules/CPack.cmake") 33 # SET(CPACK_PACKAGE_EXECUTABLES "ccmake" "CMake") 38 ENDIF(EXISTS "${CMAKE_ROOT}/Modules/CPack.cmake")
|
| /external/llvm/cmake/modules/ |
| GenerateVersionFromCVS.cmake | 0 # CMake project that writes Subversion revision information to a header. 13 # Chop off cmake/modules/GetSVN.cmake 20 "${LLVM_DIR}/cmake/modules")
|
| /external/llvm/cmake/platforms/ |
| Android.cmake | 7 # cmake ..; make 9 # cmake -DLLVM_ANDROID_TOOLCHAIN_DIR=/path/to/android/ndk \ 10 # -DCMAKE_TOOLCHAIN_FILE=../../cmake/platforms/Android.cmake ../..
|
| /external/lz4/contrib/debian/ |
| rules | 4 include /usr/share/cdbs/1/class/cmake.mk
|
| /external/pcre/dist2/cmake/ |
| FindReadline.cmake | 1 # from http://websvn.kde.org/trunk/KDE/kdeedu/cmake/modules/FindReadline.cmake 2 # http://websvn.kde.org/trunk/KDE/kdeedu/cmake/modules/COPYING-CMAKE-SCRIPTS
|
| /external/tinyxml2/ |
| .travis.yml | 11 before_script: cmake .
|
| /prebuilts/clang/host/darwin-x86/clang-4393122/lib64/cmake/clang/ |
| ClangConfig.cmake | 4 # Compute the installation prefix from this LLVMConfig.cmake file location. 11 HINTS "${CLANG_INSTALL_PREFIX}/lib64/cmake/llvm") 14 set(CLANG_CMAKE_DIR "${CLANG_INSTALL_PREFIX}/lib64/cmake/clang") 18 include("${CLANG_CMAKE_DIR}/ClangTargets.cmake")
|
| /prebuilts/clang/host/darwin-x86/clang-4393122/lib64/cmake/llvm/ |
| GenerateVersionFromCVS.cmake | 0 # CMake project that writes Subversion revision information to a header. 13 # Chop off cmake/modules/GetSVN.cmake 20 "${LLVM_DIR}/cmake/modules")
|
| /prebuilts/clang/host/darwin-x86/clang-4479392/lib64/cmake/clang/ |
| ClangConfig.cmake | 4 # Compute the installation prefix from this LLVMConfig.cmake file location. 11 HINTS "${CLANG_INSTALL_PREFIX}/lib64/cmake/llvm") 14 set(CLANG_CMAKE_DIR "${CLANG_INSTALL_PREFIX}/lib64/cmake/clang") 18 include("${CLANG_CMAKE_DIR}/ClangTargets.cmake")
|
| /prebuilts/clang/host/darwin-x86/clang-4479392/lib64/cmake/llvm/ |
| GenerateVersionFromCVS.cmake | 0 # CMake project that writes Subversion revision information to a header. 13 # Chop off cmake/modules/GetSVN.cmake 20 "${LLVM_DIR}/cmake/modules")
|