Searched +full:- +full:dcmake_prefix_path (Results 1 – 20 of 20) sorted by relevance
/external/tinyxml2/.github/workflows/ |
D | test.yml | 7 fail-fast: false 9 os: [ windows-2019, macos-10.15, ubuntu-20.04 ] 12 - os: windows-2019 17 - os: ubuntu-20.04 20 - os: macos-10.15 23 - cmake: 3.15 25 - cmake: 3.x 31 runs-on: ${{ matrix.os }} 33 # System set-up 34 - uses: actions/checkout@v2 [all …]
|
/external/parameter-framework/upstream/ |
D | appveyor.yml | 1 version: 3.0.0-{build} 13 # See: https://msdn.microsoft.com/en-us/library/bb513638%28VS.85%29.aspx 14 - reg add "HKLM\SYSTEM\CurrentControlSet\Control\Windows" /f /v ErrorMode /d 2 18 # | - Check online for a solution and close the program | 19 # | - Close the program | 20 # See: https://msdn.microsoft.com/en-us/library/bb513638%28VS.85%29.aspx 21 - reg add "HKLM\Software\Microsoft\Windows\Windows Error Reporting" /f /v DontShowUI /d 1 24 - set PREFIX_PATH=%APPVEYOR_BUILD_FOLDER%\asio-1.10.6;%APPVEYOR_BUILD_FOLDER%\catch 26 - set INSTALL=%HOMEPATH%\install 28 - set CTEST_PARAMS=--output-on-failure [all …]
|
D | .travis.yml | 2 - linux 3 - osx 8 # https://docs.travis-ci.com/user/languages/objective-c/#Supported-OS-X-iOS-SDK-versions 15 - PREFIX=$HOME/prefix 16 - MY_CMAKE_OPTIONS="-DCMAKE_PREFIX_PATH=$PREFIX -DCMAKE_INSTALL_PREFIX=$HOME/install" 17 - OSX_CMAKE_OPTIONS="-DBUILD_TESTING=OFF -DPYTHON_BINDINGS=OFF -DCLIENT_SIMULATOR=OFF" 18 - CTEST_OUTPUT_ON_FAILURE=1 19 - LINUX=false 20 - OSX=false 23 - gcc [all …]
|
D | README.md | 1 # parameter-framework 3 …![Build Status](https://travis-ci.org/01org/parameter-framework.svg?branch=master)](https://travis… 4 …8tet0qimbu/branch/master)](https://ci.appveyor.com/project/parameter-framework/parameter-framework) 5 …//codecov.io/github/01org/parameter-framework/coverage.svg?branch=master)](https://codecov.io/gith… 9 The parameter-framework is a plugin-based and rule-based framework for handling 12 1. Describe your system's structure and its parameters (in XML) - aka. **What**; 14 that you just described - aka. **How**; 15 3. Define (in XML or in a domain-specific-language) conditions/rules upon which 16 a given parameter must take a given value - aka. **When**. 18 ![What, How, When](https://01org.github.io/parameter-framework/hosting/what-how-when.png) [all …]
|
/external/webp/infra/ |
D | compile_android.sh | 32 set -xe 35 readonly WORKSPACE=${WORKSPACE:-"$(mktemp -d -t webp.android.XXX)"} 45 static-debug 47 shared-debug 49 armeabi-v7a 50 arm64-v8a 62 if [[ ! -d "${WORKSPACE}" ]]; then 79 readonly BUILD_DIR="${WORKSPACE}/build-${BUILD_TYPE}" 82 if [[ ! -x "${ANDROID_NDK_DIR}/ndk-build" ]]; then 83 log_err "unable to find ndk-build in ANDROID_NDK_DIR: ${ANDROID_NDK_DIR}." [all …]
|
D | compile.sh | 32 set -xe 34 WORKSPACE=${WORKSPACE:-"$(mktemp -d -t webp.XXX)"} 43 BUILD_TYPE supported build type: (shared, static, static-debug) 45 aarch64-linux-clang 46 aarch64-linux-gnu 47 arm-linux-gnueabi 48 arm-neon-linux-gnueabi 50 cmake-aarch64 51 cmake-arm 52 cmake-clang [all …]
|
/external/eigen/doc/ |
D | TopicCMakeGuide.dox | 28 $ cmake path-to-example-directory 31 which requires at least version 3.3 of %Eigen. Here, `path-to-example-directory` 37 $ cmake path-to-example-directory -DCMAKE_PREFIX_PATH=$HOME/mypackages 41 $ cmake path-to-example-directory -DEigen3_DIR=$HOME/mypackages/share/eigen3/cmake/
|
/external/python/pybind11/tests/test_cmake_build/ |
D | CMakeLists.txt | 1 # Built-in in CMake 3.5+ 9 set(build_options "-DCMAKE_CXX_COMPILER=${CMAKE_CXX_COMPILER}") 12 list(APPEND build_options "-DPYBIND11_FINDPYTHON=${PYBIND11_FINDPYTHON}") 15 list(APPEND build_options "-DPython_ROOT_DIR=${Python_ROOT_DIR}") 18 list(APPEND build_options "-DPython_EXECUTABLE=${Python_EXECUTABLE}") 20 list(APPEND build_options "-DPYTHON_EXECUTABLE=${PYTHON_EXECUTABLE}") 24 list(APPEND build_options "-DCMAKE_CXX_STANDARD=${CMAKE_CXX_STANDARD}") 28 list(APPEND build_options "-Dpybind11_SOURCE_DIR=${pybind11_SOURCE_DIR}") 30 list(APPEND build_options "-DCMAKE_PREFIX_PATH=${pybind11_BINARY_DIR}/mock_install") 36 --build-and-test [all …]
|
/external/freetype/builds/cmake/ |
D | testbuild.sh | 1 #!/bin/sh -e 3 # Copyright (C) 2015-2023 by 22 # - builds the main CMakeLists.txt 23 # - builds and runs a small test app in a separate build tree so 24 # the config-module is tested, too 28 # - The variable BUILD_SHARED_LIBS will be forwarded to the CMake project 37 tmpdir=/tmp/freetype-cmake-testbuild 38 rm -rf $tmpdir 39 mkdir -p $tmpdir 44 if test -n "$BUILD_SHARED_LIBS"; then [all …]
|
/external/oss-fuzz/projects/libfido2/ |
D | build.sh | 1 #!/bin/bash -eu 8 # http://www.apache.org/licenses/LICENSE-2.0 18 # Build libcbor, taken from oss-fuzz/projects/libcbor/build.sh 19 # Note SANITIZE=OFF since it gets taken care of by $CFLAGS set by oss-fuzz 21 patch -l -p0 < ${SRC}/libfido2/fuzz/README 23 cmake -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=Debug \ 24 -DCMAKE_INSTALL_PREFIX=${WORK} -DSANITIZE=OFF .. 25 make -j$(nproc) VERBOSE=1 28 # Build OpenSSL, taken from oss-fuzz/projects/openssl/build.sh 33 CONFIGURE_FLAGS="no-asm" [all …]
|
/external/libtextclassifier/abseil-cpp/CMake/install_test_project/ |
D | test.sh | 9 # https://www.apache.org/licenses/LICENSE-2.0 19 # TODO(absl-team): This script isn't fully hermetic because 20 # -DABSL_USE_GOOGLETEST_HEAD=ON means that this script isn't pinned to a fixed 22 # break this test. Fix this by allowing this script to pin to a known-good 26 set -euox pipefail 30 if [[ "${#}" -eq 1 ]]; then 31 cmake -DCMAKE_INSTALL_PREFIX="${1}" "${absl_dir}" 35 cmake --build . --target install -- -j 41 rm -rf "${absl_build_dir}" 42 mkdir -p "${absl_build_dir}" [all …]
|
/external/tcpdump/ |
D | build.sh | 1 #!/bin/sh -e 18 if [ -z "$PREFIX" ]; then 29 # are not warning-free for one or another reason. If you manage to fix one of 34 clang-*/SunOS-5.11) 37 # [-Wstrict-prototypes] 39 # [-Wstrict-prototypes] 40 [ "`uname -o`" = illumos ] && TCPDUMP_TAINTED=yes 50 [ "$TCPDUMP_CMAKE_TAINTED" != yes ] && CMAKE_OPTIONS='-Werror=dev' 55 run_after_echo ./configure --with-crypto="$CRYPTO" \ 56 --enable-smb="$SMB" --prefix="$PREFIX" [all …]
|
/external/openscreen/third_party/abseil/src/CMake/install_test_project/ |
D | test.sh | 9 # https://www.apache.org/licenses/LICENSE-2.0 19 # TODO(absl-team): This script isn't fully hermetic because 20 # -DABSL_USE_GOOGLETEST_HEAD=ON means that this script isn't pinned to a fixed 22 # break this test. Fix this by allowing this script to pin to a known-good 26 set -euox pipefail 30 if [[ "${#}" -eq 1 ]]; then 31 cmake -DCMAKE_INSTALL_PREFIX="${1}" "${absl_dir}" 35 cmake --build . --target install -- -j 41 rm -rf "${absl_build_dir}" 42 mkdir -p "${absl_build_dir}" [all …]
|
/external/angle/third_party/abseil-cpp/CMake/ |
D | README.md | 4 that can be used on a wide range of platforms ("C" stands for cross-platform.). 18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>) 20 ### Step-by-Step Instructions 25 `-DBUILD_TESTING=OFF` or `-DABSL_BUILD_TESTING=OFF` when configuring your 29 Abseil as a [git submodule](https://git-scm.com/docs/git-submodule) in your 50 add_subdirectory(abseil-cpp) 58 the current top-level CMake project) and configure the minimum required C++ 69 # current top-level CMake project. 75 add_subdirectory(abseil-cpp) 91 Then the top-level application project that uses your library is responsible for [all …]
|
/external/tensorflow/third_party/absl/abseil-cpp/CMake/ |
D | README.md | 4 that can be used on a wide range of platforms ("C" stands for cross-platform.). 18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>) 20 ### Step-by-Step Instructions 25 `-DBUILD_TESTING=OFF` or `-DABSL_BUILD_TESTING=OFF` when configuring your 29 Abseil as a [git submodule](https://git-scm.com/docs/git-submodule) in your 50 add_subdirectory(abseil-cpp) 58 the current top-level CMake project) and configure the minimum required C++ 69 # current top-level CMake project. 75 add_subdirectory(abseil-cpp) 91 Then the top-level application project that uses your library is responsible for [all …]
|
/external/cronet/third_party/abseil-cpp/CMake/ |
D | README.md | 4 that can be used on a wide range of platforms ("C" stands for cross-platform.). 18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>) 20 ### Step-by-Step Instructions 25 `-DBUILD_TESTING=OFF` or `-DABSL_BUILD_TESTING=OFF` when configuring your 29 Abseil as a [git submodule](https://git-scm.com/docs/git-submodule) in your 50 add_subdirectory(abseil-cpp) 58 the current top-level CMake project) and configure the minimum required C++ 69 # current top-level CMake project. 75 add_subdirectory(abseil-cpp) 91 Then the top-level application project that uses your library is responsible for [all …]
|
/external/abseil-cpp/CMake/ |
D | README.md | 4 that can be used on a wide range of platforms ("C" stands for cross-platform.). 18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>) 20 ### Step-by-Step Instructions 25 `-DBUILD_TESTING=OFF` or `-DABSL_BUILD_TESTING=OFF` when configuring your 29 Abseil as a [git submodule](https://git-scm.com/docs/git-submodule) in your 50 add_subdirectory(abseil-cpp) 58 the current top-level CMake project) and configure the minimum required C++ 69 # current top-level CMake project. 75 add_subdirectory(abseil-cpp) 91 Then the top-level application project that uses your library is responsible for [all …]
|
/external/webrtc/third_party/abseil-cpp/CMake/ |
D | README.md | 4 that can be used on a wide range of platforms ("C" stands for cross-platform.). 18 …m/google/googletest/blob/master/googletest/README.md#incorporating-into-an-existing-cmake-project>) 20 ### Step-by-Step Instructions 25 `-DBUILD_TESTING=OFF` or `-DABSL_BUILD_TESTING=OFF` when configuring your 29 Abseil as a [git submodule](https://git-scm.com/docs/git-submodule) in your 50 add_subdirectory(abseil-cpp) 58 the current top-level CMake project) and configure the minimum required C++ 69 # current top-level CMake project. 75 add_subdirectory(abseil-cpp) 91 Then the top-level application project that uses your library is responsible for [all …]
|
/external/cronet/third_party/protobuf/cmake/ |
D | README.md | 6 and optionally [Git](http://git-scm.com) installed on your computer before proceeding. 39 Optionally, you will want to download [ninja](https://ninja-build.org/) and add it to your *PATH* v… 52 For example: if you only need C++, download `protobuf-cpp-[VERSION].tar.gz`; if 53 you need C++ and Java, download `protobuf-java-[VERSION].tar.gz` (every package 55 download `protobuf-all-[VERSION].tar.gz`. 60 C:\Path\to\src> git clone -b [release_tag] https://github.com/protocolbuffers/protobuf.git 62 Where *[release_tag]* is a git tag like *v3.0.0-beta-1* or a branch name like *master* 74 C:\Path\to\src\protobuf> git submodule update --init --recursive 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… [all …]
|
/external/protobuf/cmake/ |
D | README.md | 6 and optionally [Git](http://git-scm.com) installed on your computer before proceeding. 39 Optionally, you will want to download [ninja](https://ninja-build.org/) and add it to your *PATH* v… 52 For example: if you only need C++, download `protobuf-cpp-[VERSION].tar.gz`; if 53 you need C++ and Java, download `protobuf-java-[VERSION].tar.gz` (every package 55 download `protobuf-all-[VERSION].tar.gz`. 60 C:\Path\to\src> git clone -b [release_tag] https://github.com/protocolbuffers/protobuf.git 62 Where *[release_tag]* is a git tag like *v3.0.0-beta-1* or a branch name like *main* 74 C:\Path\to\src\protobuf> git submodule update --init --recursive 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… [all …]
|