Searched +full:cmake +full:- +full:visual +full:- +full:2022 (Results 1 – 25 of 65) sorted by relevance
123
| /external/curl/ |
| D | appveyor.yml | 21 # SPDX-License-Identifier: curl 27 # https://www.appveyor.com/docs/appveyor-yml/ 29 # https://www.appveyor.com/docs/windows-images-software/ 39 # generated CMake-based Visual Studio Release builds 40 - job_name: 'CMake, VS2008, Release, x86, Schannel, Build-only' 41 APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2015' 42 BUILD_SYSTEM: CMake 43 PRJ_GEN: 'Visual Studio 9 2008' 51 - job_name: 'CMake, VS2008, Debug, x86, Schannel, Build-only' 52 APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2015' [all …]
|
| D | appveyor.sh | 22 # SPDX-License-Identifier: curl 27 set -eux; [ -n "${BASH:-}${ZSH_NAME:-}" ] && set -o pipefail 31 if [ "${APPVEYOR_BUILD_WORKER_IMAGE}" = 'Visual Studio 2022' ]; then 32 openssl_root_win='C:/OpenSSL-v32-Win64' 34 openssl_root_win='C:/OpenSSL-v111-Win64' 36 openssl_root="$(cygpath -u "${openssl_root_win}")" 38 if [ "${BUILD_SYSTEM}" = 'CMake' ]; then 40 [[ "${TARGET:-}" = *'ARM64'* ]] && SKIP_RUN='ARM64 architecture' 41 [ "${OPENSSL}" = 'ON' ] && options+=" -DOPENSSL_ROOT_DIR=${openssl_root_win}" 42 [ "${PRJ_CFG}" = 'Debug' ] && options+=' -DCMAKE_RUNTIME_OUTPUT_DIRECTORY_DEBUG=' [all …]
|
| /external/expat/ |
| D | appveyor.yml | 10 # Copyright (c) 2017-2022 Sebastian Pipping <sebastian@pipping.org> 35 - git config --global core.autocrlf input 38 version: libexpat-{build} 48 # AppVeyor pre-installed software: 49 # https://www.appveyor.com/docs/build-environment/#pre-installed-software 51 # CMake Visual Studio generators: 52 # https://cmake.org/cmake/help/latest/manual/cmake-generators.7.html#visual-studio-generators 55 # Visual Studio 2017 Win32 56 - GENERATOR: Visual Studio 15 2017 59 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 [all …]
|
| /external/libopus/.github/workflows/ |
| D | cmake.yml | 1 name: CMake 7 name: Test build with CMake 3.1.0 8 runs-on: ubuntu-20.04 10 - uses: actions/checkout@v3 12 fetch-depth: 0 13 - name: Download models 15 - name: Install CMake 3.1 17 …curl -sL https://github.com/Kitware/CMake/releases/download/v3.1.0/cmake-3.1.0-Linux-x86_64.sh -o … 19 sudo ./cmakeinstall.sh --prefix=/usr/local --exclude-subdir 21 sudo apt-get install libidn11 [all …]
|
| D | dred.yml | 8 name: CMake/${{ matrix.config.name }} 9 runs-on: ${{ matrix.config.os }} 11 fail-fast: false 14 - { 16 os: windows-latest, 18 args: -G "Visual Studio 17 2022" -DOPUS_X86_PRESUME_AVX2=ON 20 - { 22 os: windows-latest, 24 args: -G "Visual Studio 17 2022" -A ARM64 26 - { [all …]
|
| /external/OpenCL-CLHPP/.github/workflows/ |
| D | windows.yml | 7 runs-on: windows-2022 12 GEN: [Visual Studio 17 2022, Ninja Multi-Config] 15 CMAKE: [3.22.0] 17 …CMAKE_URL: https://github.com/Kitware/CMake/releases/download/v${{matrix.CMAKE}}/cmake-${{matrix.C… 18 CMAKE_EXE: C:\Tools\Kitware\CMake\${{matrix.CMAKE}}\bin\cmake.exe 19 CTEST_EXE: C:\Tools\Kitware\CMake\${{matrix.CMAKE}}\bin\ctest.exe 20 NINJA_URL: https://github.com/ninja-build/ninja/releases/download/v1.10.2/ninja-win.zip 24 - name: Checkout OpenCL-CLHPP 29 - name: Checkout OpenCL-Headers 32 repository: KhronosGroup/OpenCL-Headers [all …]
|
| /external/OpenCL-Headers/.github/workflows/ |
| D | windows.yml | 5 paths-ignore: 6 - '**/*.md' 8 paths-ignore: 9 - '**/*.md' 13 runs-on: windows-latest 18 GEN: [Visual Studio 17 2022] 22 - VER: v141 24 GEN: Ninja Multi-Config 28 NINJA_URL: https://github.com/ninja-build/ninja/releases/download/v1.10.2/ninja-win.zip 30 VS_ROOT: 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise' [all …]
|
| /external/grpc-grpc/tools/run_tests/helper_scripts/ |
| D | build_cxx.bat | 1 @rem Copyright 2022 The gRPC Authors 7 @rem http://www.apache.org/licenses/LICENSE-2.0 18 mkdir cmake 19 cd cmake 22 set "INSTALL_PATH=%~dp0\cmake\install" 32 If "%GRPC_BUILD_ACTIVATE_VS_TOOLS%" == "2022" ( 44 If "%GRPC_CMAKE_GENERATOR%" == "Visual Studio 16 2019" ( 46 @rem A new-enough Windows 10 SDK that supports C++11's stdalign.h is required 48 @rem By default cmake together with Visual Studio generator 54 @rem See b/275694647 and https://gitlab.kitware.com/cmake/cmake/-/issues/16202#note_140259 [all …]
|
| /external/libaom/ |
| D | README.md | 6 1. [Building the lib and applications](#building-the-library-and-applications) 7 - [Prerequisites](#prerequisites) 8 - [Get the code](#get-the-code) 9 - [Basics](#basic-build) 10 - [Configuration options](#configuration-options) 11 - [Dylib builds](#dylib-builds) 12 - [Debugging](#debugging) 13 - [Cross compiling](#cross-compiling) 14 - [Sanitizer support](#sanitizers) 15 - [MSVC builds](#microsoft-visual-studio-builds) [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 12 - Git (optional, but recommended for version control integration) 13 - Working C compiler 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`… 35 - `OPUS_BUILD_SHARED_LIBRARY`: build shared library. 36 - `OPUS_BUILD_TESTING`: build tests. [all …]
|
| /external/expat/expat/ |
| D | Changes | 14 !! - <blink>fixing a complex non-public security issue</blink>, !! 15 !! - teaming up on researching and fixing future security reports and !! 16 !! ClusterFuzz findings with few-days-max response times in communication !! 19 !! - implementing and auto-testing XML 1.0r5 support !! 21 !! - smart ideas on fixing the Autotools CMake files generation issue !! 23 !! - the Windows binaries topic (needs requirements engineering first), !! 24 !! - pushing migration from `int` to `size_t` further !! 25 !! including edge-cases test coverage (needs discussion before anything). !! 27 !! For details, please reach out via e-mail to sebastian@pipping.org so we !! 30 !! THANK YOU! Sebastian Pipping -- Berlin, 2024-03-09 !! [all …]
|
| /external/cronet/third_party/google_benchmark/src/.github/workflows/ |
| D | build-and-test.yml | 1 name: build-and-test 10 # TODO: add 32-bit builds (g++ and clang++) for ubuntu 11 # (requires g++-multilib and libc6:i386) 16 runs-on: ${{ matrix.os }} 18 fail-fast: false 20 os: [ubuntu-22.04, ubuntu-20.04, macos-latest] 26 - uses: actions/checkout@v3 28 - uses: lukka/get-cmake@latest 30 - name: create build environment 31 run: cmake -E make_directory ${{ runner.workspace }}/_build [all …]
|
| /external/google-benchmark/.github/workflows/ |
| D | build-and-test.yml | 1 name: build-and-test 10 # TODO: add 32-bit builds (g++ and clang++) for ubuntu 11 # (requires g++-multilib and libc6:i386) 16 runs-on: ${{ matrix.os }} 18 fail-fast: false 20 os: [ubuntu-22.04, ubuntu-20.04, macos-latest] 26 - uses: actions/checkout@v3 28 - uses: lukka/get-cmake@latest 30 - name: create build environment 31 run: cmake -E make_directory ${{ runner.workspace }}/_build [all …]
|
| /external/deqp-deps/glslang/ |
| D | CHANGES.md | 6 ## 14.0.0 2023-12-21 9 …nd OGLCompiler have been removed. To avoid future disruptions, please use cmake's find_package mec… 11 * Remove OVERRIDE_MSVCCRT cmake option. 21 * Overflow/underflow out-of-range floats to infinity/0.0 respectively 24 * Add BUILD_WERROR cmake option 25 * Add GLSLANG_TESTS cmake option 31 * Fix conversion of 64-bit unsigned integer constants to bool 32 * Output 8-bit and 16-bit capabilities when appropriate for OpSpecConstant 34 ## 13.1.1 2023-10-16 37 ## 13.1.0 2023-10-13 [all …]
|
| /external/libpng/ |
| D | .appveyor.yml | 1 version: 1.6.x-{build} 5 - /libpng[0-1][0-7]/ 6 - /v[0-1][.][0-7][.][0-9]+/ 9 - Visual Studio 2022 15 - TOOLCHAIN: vstudio 16 AUTOMATION: cmake 18 - TOOLCHAIN: vstudio 19 AUTOMATION: cmake 21 - TOOLCHAIN: vstudio 22 AUTOMATION: cmake [all …]
|
| /external/google-fruit/.github/workflows/ |
| D | test-on-windows.yml | 5 - master 10 …e tests with tmate debugging enabled (https://github.com/marketplace/actions/debugging-with-tmate)' 15 - cron: '13 8 1 * *' 18 runs-on: ${{matrix.config.runs_on}} 20 fail-fast: false 23 …- {runs_on: windows-2022, msvc_version_year: 2022, msvc_version: 17, multi_config: true, python_pa… 24 …- {runs_on: windows-2022, msvc_version_year: 2022, msvc_version: 17, multi_config: true, python_pa… 25 …- {runs_on: windows-2022, msvc_version_year: 2022, msvc_version: 17, multi_config: false, python_p… 26 …- {runs_on: windows-2022, msvc_version_year: 2022, msvc_version: 17, multi_config: false, python_p… 27 …- {runs_on: windows-2022, msvc_version_year: 2022, msvc_version: 17, multi_config: false, python_p… [all …]
|
| /external/rust/crates/grpcio-sys/grpc/tools/run_tests/helper_scripts/ |
| D | build_cxx.bat | 1 @rem Copyright 2022 The gRPC Authors 7 @rem http://www.apache.org/licenses/LICENSE-2.0 19 mkdir cmake 20 cd cmake 32 If "%GRPC_CMAKE_GENERATOR%" == "Visual Studio 16 2019" ( 34 @rem A new-enough Windows 10 SDK that supports C++11's stdalign.h is required 36 @rem By default cmake together with Visual Studio generator 42 @rem See b/275694647 and https://gitlab.kitware.com/cmake/cmake/-/issues/16202#note_140259 43 set "CMAKE_SYSTEM_VERSION_ARG=-DCMAKE_SYSTEM_VERSION=10.0" 55 …cmake -G "%GRPC_CMAKE_GENERATOR%" -DCMAKE_C_COMPILER="cl.exe" -DCMAKE_CXX_COMPILER="cl.exe" -DgRPC… [all …]
|
| /external/angle/third_party/glslang/src/ |
| D | CHANGES.md | 6 ## 14.2.0 2024-05-02 11 * Remove duplicate SPIR-V decorations 15 * Fix bug when importing SPIR-V extended intruction set 20 ## 14.1.0 2024-03-08 21 * Add a new --abosute-path command-line option to output absolute paths in error messages 24 * Fix HLSL built-in passthrough via inout 25 * Enable -Wimplicit-fallthrough and fix warnings 26 * Fix -Wmissing_field_initializer warnings 35 * Add SPIRV-Tools-opt dependency if ENABLE_OPT 39 * Remove generation of deprecated Target.cmake files [all …]
|
| /external/googletest/ci/ |
| D | windows-presubmit.bat | 3 SET BAZEL_EXE=%KOKORO_GFILE_DIR%\bazel-7.0.0-windows-x86_64.exe 8 SET CMAKE_BIN="cmake.exe" 22 :: ---------------------------------------------------------------------------- 23 :: CMake 28 -G "Visual Studio 17 2022" ^ 29 -DPYTHON_EXECUTABLE:FILEPATH=c:\python37\python.exe ^ 30 -DPYTHON_INCLUDE_DIR:PATH=c:\python37\include ^ 31 -DPYTHON_LIBRARY:FILEPATH=c:\python37\lib\site-packages\pip ^ 32 -Dgtest_build_samples=ON ^ 33 -Dgtest_build_tests=ON ^ [all …]
|
| /external/cronet/third_party/boringssl/src/third_party/googletest/ci/ |
| D | windows-presubmit.bat | 3 SET BAZEL_EXE=%KOKORO_GFILE_DIR%\bazel-5.1.1-windows-x86_64.exe 8 SET CMAKE_BIN="cmake.exe" 22 :: ---------------------------------------------------------------------------- 23 :: CMake 28 -G "Visual Studio 17 2022" ^ 29 -DPYTHON_EXECUTABLE:FILEPATH=c:\python37\python.exe ^ 30 -DPYTHON_INCLUDE_DIR:PATH=c:\python37\include ^ 31 -DPYTHON_LIBRARY:FILEPATH=c:\python37\lib\site-packages\pip ^ 32 -Dgtest_build_samples=ON ^ 33 -Dgtest_build_tests=ON ^ [all …]
|
| /external/cronet/third_party/cpu_features/src/.github/workflows/ |
| D | amd64_windows_cmake.yml | 1 name: amd64 Windows CMake 8 - cron: '0 0 7,22 * *' 13 runs-on: windows-latest 17 - uses: actions/checkout@v2 18 - name: Configure 19 run: cmake -S. -Bbuild -G "Visual Studio 17 2022" -DCMAKE_CONFIGURATION_TYPES=Release 20 - name: Build 21 run: cmake --build build --config Release --target ALL_BUILD -- /maxcpucount 22 - name: Test 23 run: cmake --build build --config Release --target RUN_TESTS -- /maxcpucount [all …]
|
| /external/cpu_features/.github/workflows/ |
| D | amd64_windows_cmake.yml | 1 name: amd64 Windows CMake 8 - cron: '0 0 7,22 * *' 13 runs-on: windows-latest 17 - uses: actions/checkout@v2 18 - name: Configure 19 run: cmake -S. -Bbuild -G "Visual Studio 17 2022" -DCMAKE_CONFIGURATION_TYPES=Release 20 - name: Build 21 run: cmake --build build --config Release --target ALL_BUILD -- /maxcpucount 22 - name: Test 23 run: cmake --build build --config Release --target RUN_TESTS -- /maxcpucount [all …]
|
| /external/double-conversion/ |
| D | Changelog | 1 2022-01-16: 2 Install Visual Studio debugger (pdb) files. 4 2022-01-10: 5 Fix quiet NANs on MIPS* and PA-RISC architectures. 8 2021-12-22: 12 2021-12-04: 15 2021-10-04: 18 2021-07-16: 21 2021-05-19: 22 Loongarch is a RISC-style command system architecture. [all …]
|
| /external/libultrahdr/.github/workflows/ |
| D | cmake.yml | 1 name: CMake 15 - name: ubuntu-latest-gcc-cmake 16 os: ubuntu-latest 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 23 os: ubuntu-latest 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 [all …]
|
| /external/rust/crates/libz-sys/src/zlib-ng/.github/workflows/ |
| D | nmake.yml | 4 ci-cmake: 6 runs-on: ${{ matrix.os }} 8 fail-fast: false 11 - name: Windows NMake x86 12 os: windows-2022 14 vc-vars: x86 16 - name: Windows NMake x64 compat 17 os: windows-2022 19 vc-vars: x86_amd64 20 additional-args: ZLIB_COMPAT=yes [all …]
|
123