| /third_party/benchmark/.github/workflows/ |
| D | build-and-test.yml | 13 name: ${{ matrix.os }}.${{ matrix.build_type }}.${{ matrix.compiler }} 19 build_type: ['Release', 'Debug'] 24 build_type: 'Release' 27 build_type: 'Debug' 42 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} 47 run: cmake --build . --config ${{ matrix.build_type }} 52 run: ctest -C ${{ matrix.build_type }} -VV 55 name: ubuntu-16.04.${{ matrix.build_type }}.${{ matrix.compiler }} 60 build_type: ['Release', 'Debug'] 82 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} [all …]
|
| D | build-and-test-perfcounters.yml | 12 name: ${{ matrix.os }}.${{ matrix.build_type }} 18 build_type: ['Release', 'Debug'] 40 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} 45 run: cmake --build . --config ${{ matrix.build_type }} 53 # run: ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure 56 name: ubuntu-16.04.${{ matrix.build_type }} 61 build_type: ['Release', 'Debug'] 84 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} 89 run: cmake --build . --config ${{ matrix.build_type }} 97 # run: ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure
|
| D | sanitizer.yml | 12 name: ${{ matrix.sanitizer }}.${{ matrix.build_type }}.${{ matrix.compiler }} 17 build_type: ['Debug', 'RelWithDebInfo'] 82 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} 87 run: cmake --build . --config ${{ matrix.build_type }} 92 run: ctest -C ${{ matrix.build_type }} -VV
|
| /third_party/jsoncpp/.travis_scripts/ |
| D | cmake_builder.sh | 9 # - BUILD_TYPE=Release/Debug 21 if ${BUILD_TYPE+false}; then 22 echo "BUILD_TYPE not set in environment." 36 echo "USAGE: CXX=$(which clang++) BUILD_TYPE=[Release|Debug] LIB_TYPE=[static|shared] $0" 39 …echo " CXX=$(which clang++) BUILD_TYPE=Release LIB_TYPE=shared DESTDIR=/tmp/cmake_json_c… 40 …echo " CXX=$(which clang++) BUILD_TYPE=Debug LIB_TYPE=shared DESTDIR=/tmp/cmake_json_c… 41 …echo " CXX=$(which clang++) BUILD_TYPE=Release LIB_TYPE=static DESTDIR=/tmp/cmake_json_c… 42 …echo " CXX=$(which clang++) BUILD_TYPE=Debug LIB_TYPE=static DESTDIR=/tmp/cmake_json_c… 44 …echo " CXX=$(which g++) BUILD_TYPE=Release LIB_TYPE=shared DESTDIR=/tmp/cmake_json_c… 45 …echo " CXX=$(which g++) BUILD_TYPE=Debug LIB_TYPE=shared DESTDIR=/tmp/cmake_json_c… [all …]
|
| D | meson_builder.sh | 9 # - BUILD_TYPE=release/debug 13 if ${BUILD_TYPE+false}; then 14 echo "BUILD_TYPE not set in environment." 28 echo "USAGE: CXX=$(which clang++) BUILD_TYPE=[release|debug] LIB_TYPE=[static|shared] $0" 31 …echo " CXX=$(which clang++) BUILD_TYPE=release LIB_TYPE=shared DESTDIR=/tmp/meson_json_c… 32 …echo " CXX=$(which clang++) BUILD_TYPE=debug LIB_TYPE=shared DESTDIR=/tmp/meson_json_c… 33 …echo " CXX=$(which clang++) BUILD_TYPE=release LIB_TYPE=static DESTDIR=/tmp/meson_json_c… 34 …echo " CXX=$(which clang++) BUILD_TYPE=debug LIB_TYPE=static DESTDIR=/tmp/meson_json_c… 36 …echo " CXX=$(which g++) BUILD_TYPE=release LIB_TYPE=shared DESTDIR=/tmp/meson_json_c… 37 …echo " CXX=$(which g++) BUILD_TYPE=debug LIB_TYPE=shared DESTDIR=/tmp/meson_json_c… [all …]
|
| /third_party/skia/third_party/externals/swiftshader/tests/kokoro/gcp_windows/ |
| D | continuous.bat | 29 cmake --build . --config %BUILD_TYPE% || goto :error 35 build\%BUILD_TYPE%\ReactorUnitTests.exe || goto :error 36 build\%BUILD_TYPE%\gles-unittests.exe || goto :error 37 build\%BUILD_TYPE%\system-unittests.exe || goto :error 38 build\%BUILD_TYPE%\vk-unittests.exe || goto :error 43 cmake --build . --config %BUILD_TYPE% --target ReactorUnitTests || goto :error 44 %BUILD_TYPE%\ReactorUnitTests.exe --gtest_filter=ReactorUnitTests.Print* || goto :error 50 cmake --build . --config %BUILD_TYPE% --target ReactorUnitTests || goto :error 51 %BUILD_TYPE%\ReactorUnitTests.exe --gtest_filter=ReactorUnitTests.EmitAsm || goto :error 57 cmake --build . --config %BUILD_TYPE% --target ReactorUnitTests || goto :error [all …]
|
| /third_party/jsoncpp/devtools/ |
| D | batchbuild.py | 15 def __init__(self, prepend_envs=None, variables=None, build_type=None, generator=None): argument 18 self.build_type = build_type 27 build_desc.build_type or self.build_type, 46 if self.build_type and 'Visual' not in self.generator: 47 args.append("-DCMAKE_BUILD_TYPE=%s" % self.build_type) 53 return "BuildDesc(%s, build_type=%s)" % (" ".join(self.cmake_args()), self.build_type) 83 if self.desc.build_type: 84 cmd += ['--config', self.desc.build_type] 130 for build_type in axis["build_types"]: 131 build_desc = BuildDesc(build_type=build_type) [all …]
|
| /third_party/benchmark/ |
| D | .travis.yml | 12 env: COMPILER=g++ C_COMPILER=gcc BUILD_TYPE=Coverage 22 - BUILD_TYPE=Debug 34 - BUILD_TYPE=Release 40 - COMPILER=g++-6 C_COMPILER=gcc-6 BUILD_TYPE=Debug 52 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Debug 63 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Release 77 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Debug 93 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Release 107 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Debug 122 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Debug [all …]
|
| /third_party/json/.github/workflows/ |
| D | windows.yml | 35 build_type: [Debug, Release] 42 if: matrix.build_type == 'Release' && matrix.architecture == 'x64' 45 if: matrix.build_type == 'Release' && matrix.architecture != 'x64' 48 if: matrix.build_type == 'Debug' 50 run: cmake --build build --config ${{ matrix.build_type }} --parallel 10 52 run: cd build ; ctest -j 10 -C ${{ matrix.build_type }} --output-on-failure 70 build_type: [Debug, Release] 77 if: matrix.build_type == 'Release' 80 if: matrix.build_type == 'Debug' 82 run: cmake --build build --config ${{ matrix.build_type }} --parallel 10 [all …]
|
| /third_party/elfio/.github/workflows/ |
| D | c-cpp.yml | 10 BUILD_TYPE: Release 19 build_type: [Release] 26 …run: cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DELFIO_BUILD_EXAMPLES=YES -DELFIO… 28 run: cmake --build build --config ${{ matrix.build_type }} 32 ctest -C ${{ matrix.build_type }}
|
| /third_party/glslang/ |
| D | ChooseMSVCCRT.cmake | 96 foreach(build_type ${CMAKE_CONFIGURATION_TYPES} ${CMAKE_BUILD_TYPE}) 97 string(TOUPPER "${build_type}" build) 104 CACHE STRING "Specify VC++ CRT to use for ${build_type} configurations." 109 endforeach(build_type) 111 foreach(build_type ${CMAKE_CONFIGURATION_TYPES} ${CMAKE_BUILD_TYPE}) 112 string(TOUPPER "${build_type}" build) 122 message(STATUS "Using ${build_type} VC++ CRT: ${LLVM_USE_CRT_${build}}") 127 endforeach(build_type)
|
| /third_party/iowow/ |
| D | .lvimrc | 7 let g:build_type = get(g:, 'build_type', 'Debug') 24 …\ 'cmake .. -DCMAKE_BUILD_TYPE='.g:build_type.' -DBUILD_TESTS='.g:build_tests.' -DCMAKE_CXX_COMPIL…
|
| /third_party/ejdb/ |
| D | .lvimrc | 7 let g:build_type = get(g:, 'build_type', 'Debug') 24 \ 'cmake .. -DCMAKE_BUILD_TYPE='.g:build_type.' -DBUILD_TESTS='.g:build_tests
|
| /third_party/flatbuffers/ |
| D | .travis.yml | 95 - BUILD_TYPE=Debug 96 - BUILD_TYPE=Release 111 -DCMAKE_BUILD_TYPE=$BUILD_TYPE 125 - BUILD_TYPE=Debug 126 - BUILD_TYPE=Release 136 -DCMAKE_BUILD_TYPE=$BUILD_TYPE
|
| /third_party/jsoncpp/ |
| D | .travis.yml | 34 BUILD_TYPE=release 44 BUILD_TYPE=release 62 BUILD_TYPE=Debug
|
| /third_party/flutter/skia/third_party/externals/spirv-tools/ |
| D | .travis.yml | 18 - BUILD_TYPE=Release 19 - BUILD_TYPE=Debug 66 cmake -DCMAKE_BUILD_TYPE=${BUILD_TYPE} ..;
|
| /third_party/skia/experimental/skottiekit/ |
| D | compile.sh | 35 BUILD_TYPE="full" 55 BUILD_TYPE="minimal" 70 echo "Building a *${BUILD_TYPE}* Debug build" 76 echo "Building a *${BUILD_TYPE}* build for profiling"
|
| /third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/include/llvm/IR/ |
| D | cmake_install.cmake | 11 if(BUILD_TYPE) 13 CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
|
| /third_party/jerryscript/tools/ |
| D | js2c.py | 59 def js_to_native_code(path, name, build_type): argument 63 if build_type != 'debug': 112 gen_output.append(js_to_native_code(path, name, script_args.build_type))
|
| /third_party/skia/third_party/externals/swiftshader/tests/kokoro/macos/ |
| D | continuous.sh | 24 if [[ "${BUILD_TYPE}" == "Debug" ]]; then 30 "-DCMAKE_BUILD_TYPE=${BUILD_TYPE}" \
|
| /third_party/skia/third_party/externals/tint/kokoro/windows/ |
| D | build.bat | 117 cmake --build . --config %BUILD_TYPE% || goto :error 122 %BUILD_TYPE%\tint_unittests.exe || goto :error 130 git bash -- ./test/test-all.sh ../tint-build/%BUILD_TYPE%/tint.exe --verbose
|
| /third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/scripts/windows/ |
| D | build.bat | 21 set BUILD_TYPE=%1 variable 60 …TALL_PREFIX=%KOKORO_ARTIFACTS_DIR%\install -GNinja -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DRE2_BUILD_TES… 81 ctest -C %BUILD_TYPE% --output-on-failure --timeout 300
|
| /third_party/spirv-tools/kokoro/scripts/windows/ |
| D | build.bat | 21 set BUILD_TYPE=%1 variable 63 …TALL_PREFIX=%KOKORO_ARTIFACTS_DIR%\install -GNinja -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DRE2_BUILD_TES… 92 ctest -C %BUILD_TYPE% --output-on-failure --timeout 300
|
| /third_party/skia/third_party/externals/spirv-tools/kokoro/scripts/windows/ |
| D | build.bat | 21 set BUILD_TYPE=%1 variable 60 …TALL_PREFIX=%KOKORO_ARTIFACTS_DIR%\install -GNinja -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DRE2_BUILD_TES… 81 ctest -C %BUILD_TYPE% --output-on-failure --timeout 300
|
| /third_party/skia/third_party/externals/tint/kokoro/linux/ |
| D | build.sh | 42 --env BUILD_TYPE=$BUILD_TYPE \
|