├── .clang-format ├── .cmake-format.yaml ├── .gitattributes ├── .github └── workflows │ └── build.yaml ├── .gitignore ├── CONTRIBUTING.md ├── CompilerOption.cmake ├── Import.cmake ├── LICENSE ├── MigrateFromAtframeUtils.md ├── README.md ├── RecommendStdVersion.cmake ├── TargetOption.cmake ├── Toolchain.cmake ├── ci ├── cmake_android_wrapper.sh ├── cmake_ios_wrapper.sh ├── do_ci.ps1 ├── do_ci.sh ├── enable_windows_long_path.reg ├── format.sh └── requirements.txt ├── modules ├── AtframeworkToolsetAutoInheritOptions.cmake ├── AtframeworkToolsetCommonDefinitions.cmake ├── EchoWithColor.cmake ├── FindConfigurePackage.cmake ├── FindJemalloc.cmake ├── FindLibevent.cmake ├── FindLibnghttp2.cmake ├── FindLibnghttp3.cmake ├── FindLibngtcp2.cmake ├── FindLibngtcp2_crypto_openssl.cmake ├── FindLibngtcp2_crypto_ossl.cmake ├── FindLibngtcp2_crypto_quictls.cmake ├── FindLibsodium.cmake ├── FindLibunwind.cmake ├── FindLibuuid.cmake ├── FindLibuv.cmake ├── FindMbedTLS.cmake ├── FindPbc.cmake ├── FindRapidjson.cmake ├── IncludeDirectoryRecurse.cmake ├── MaybePopulateSubmodule.cmake ├── ProjectBuildTools.cmake ├── ProjectSanitizerTools.cmake ├── crosscompiling │ ├── run-build-host.bat.in │ ├── run-build-host.ps1.in │ └── run-build-host.sh.in ├── print_color.py ├── reset-host-build-envs.ps1 ├── reset-host-build-envs.sh ├── restore-host-build-envs.ps1 ├── restore-host-build-envs.sh └── toolchain │ └── compiler │ └── gnu.cmake ├── ports ├── Configure.cmake ├── abseil-cpp │ ├── BUILD │ ├── abseil-cpp-20200225.3.patch │ ├── abseil-cpp-20211102.0.patch │ ├── abseil-cpp-20220623.1.patch │ ├── abseil-cpp-20220623.2.patch │ ├── abseil-cpp.cmake │ └── crosscompiling-host │ │ ├── CMakeLists.txt │ │ └── cross-main.cpp ├── algorithm │ ├── BUILD │ ├── tbb-v2021.10.0.patch │ ├── tbb-v2021.11.0.patch │ ├── tbb-v2021.12.0.patch │ ├── tbb-v2021.13.0.patch │ ├── tbb-v2021.5.0.patch │ ├── tbb-v2021.6.0.patch │ ├── tbb-v2021.7.0.patch │ ├── tbb-v2021.8.0.patch │ ├── tbb-v2022.0.0.patch │ ├── tbb-v2022.1.0.patch │ ├── tbb.cmake │ ├── xxhash-v0.8.0.patch │ ├── xxhash-v0.8.1.patch │ ├── xxhash-v0.8.2.patch │ └── xxhash.cmake ├── cares │ ├── BUILD │ ├── c-ares.cmake │ ├── cares-1.33.patch │ └── cares-1.34.patch ├── compression │ ├── BUILD │ ├── import.cmake │ ├── lz4-build-script │ │ └── CMakeLists.txt │ ├── lz4.cmake │ ├── snappy-1.1.10.patch │ ├── snappy-1.1.9.patch │ ├── snappy-1.2.patch │ ├── snappy.cmake │ ├── zlib-v1.2.11.patch │ ├── zlib-v1.2.12.patch │ ├── zlib-v1.2.13.patch │ ├── zlib-v1.3.1.patch │ ├── zlib-v1.3.patch │ ├── zlib.cmake │ └── zstd.cmake ├── flatbuffers │ ├── BUILD │ ├── crosscompiling-host │ │ ├── CMakeLists.txt │ │ ├── cross-main.cpp │ │ └── helloworld.fbs │ ├── flatbuffers-v24.12.patch │ ├── flatbuffers-v24.3.patch │ ├── flatbuffers-v25.2.patch │ └── flatbuffers.cmake ├── fmtlib │ ├── BUILD │ ├── fmtlib-8.1.1.patch │ └── fmtlib.cmake ├── grpc │ ├── BUILD │ ├── abseil-cpp.cmake │ ├── crosscompiling-grpc-host │ │ ├── CMakeLists.txt │ │ ├── client-main.cpp │ │ ├── helloworld.proto │ │ ├── run-build-host.bat.in │ │ ├── run-build-host.ps1.in │ │ ├── run-build-host.sh.in │ │ └── server-main.cpp │ ├── crosscompiling-upb-host │ │ ├── CMakeLists.txt │ │ ├── client-main.cpp │ │ ├── run-build-host.bat.in │ │ ├── run-build-host.ps1.in │ │ └── run-build-host.sh.in │ ├── grpc-v1.33.2.patch │ ├── grpc-v1.39.1.patch │ ├── grpc-v1.40.0.patch │ ├── grpc-v1.41.0.patch │ ├── grpc-v1.42.0.patch │ ├── grpc-v1.43.0.patch │ ├── grpc-v1.43.2.patch │ ├── grpc-v1.44.0.patch │ ├── grpc-v1.45.0.patch │ ├── grpc-v1.45.2.patch │ ├── grpc-v1.46.2.patch │ ├── grpc-v1.48.0.patch │ ├── grpc-v1.48.1.patch │ ├── grpc-v1.49.1.patch │ ├── grpc-v1.50.patch │ ├── grpc-v1.51.patch │ ├── grpc-v1.54.0.patch │ ├── grpc-v1.54.2.patch │ ├── grpc-v1.55.0.patch │ ├── grpc-v1.57.0.patch │ ├── grpc-v1.58.1.patch │ ├── grpc-v1.60.patch │ ├── grpc-v1.62.patch │ ├── grpc-v1.65.patch │ ├── grpc-v1.67.patch │ ├── grpc-v1.68.patch │ ├── grpc-v1.70.patch │ ├── grpc-v1.73.patch │ ├── grpc.cmake │ ├── import.cmake │ ├── upb-455cfdb8ae60a1763e6d924e36851c6897a781bb.patch │ ├── upb-61a97efa24a5ce01fb8cc73c9d1e6e7060f8ea98.patch │ ├── upb-cmake.patch │ ├── upb-e4635f223e7d36dfbea3b722a4ca4807a7e882e2.patch │ ├── upb-lua-binding │ │ └── CMakeLists.txt │ └── upb.cmake ├── gsl │ ├── BUILD │ ├── README.md │ ├── gnu-gsl.cmake │ ├── gsl-lite.cmake │ └── ms-gsl.cmake ├── jemalloc │ ├── BUILD │ └── jemalloc.cmake ├── json │ ├── BUILD │ ├── nlohmann_json.cmake │ ├── rapidjson-24b5e7a8b27f42fa16b96fc70aade9106cf7102f.patch │ ├── rapidjson-476ffa2fd272243275a74c36952f210267dc3088.patch │ ├── rapidjson-5ec44fb9206695e5293f610b0a46d21851d0c966.patch │ ├── rapidjson-f9d53419e912910fd8fa57d5705fa41425428c35.patch │ └── rapidjson.cmake ├── libcopp │ ├── BUILD │ └── libcopp.cmake ├── libcurl │ ├── BUILD │ ├── libcurl-7.87.patch │ ├── libcurl-8.0.patch │ ├── libcurl-8.1.patch │ ├── libcurl-8.10.patch │ ├── libcurl-8.11.patch │ ├── libcurl-8.12.patch │ ├── libcurl-8.14.patch │ ├── libcurl-8.2.patch │ ├── libcurl-8.5.patch │ ├── libcurl-8.6.patch │ ├── libcurl-8.7.patch │ ├── libcurl-8.9.patch │ └── libcurl.cmake ├── libevent │ ├── BUILD │ ├── libevent-2.1.patch │ └── libevent.cmake ├── libunwind │ ├── BUILD │ └── libunwind.cmake ├── libuv │ ├── BUILD │ ├── libuv-69b811f340f43ba5343eddbe167dd4882e136fe6.patch │ ├── libuv-v1.41.0.patch │ ├── libuv-v1.43.0.patch │ ├── libuv-v1.44.1.patch │ ├── libuv-v1.44.2.patch │ ├── libuv-v1.46.patch │ ├── libuv-v1.47.patch │ ├── libuv-v1.48.patch │ ├── libuv-v1.49.patch │ ├── libuv-v1.50.patch │ ├── libuv-v1.51.patch │ └── libuv.cmake ├── lua │ ├── BUILD │ ├── build-script │ │ ├── CMakeLists.txt │ │ └── lua-config.cmake.in │ ├── lua-v5.4.3.cross.patch │ ├── lua-v5.4.4.cross.patch │ ├── lua-v5.4.6.cross.patch │ ├── lua-v5.4.7.cross.patch │ ├── lua-v5.4.8.cross.patch │ └── lua.cmake ├── malloc │ ├── BUILD │ ├── jemalloc.cmake │ ├── mimalloc-v2.0.patch │ ├── mimalloc-v2.1.7.patch │ ├── mimalloc-v2.1.patch │ ├── mimalloc-v3.0.patch │ ├── mimalloc-v3.1.patch │ ├── mimalloc.cmake │ └── rpmalloc.cmake ├── nghttp2 │ ├── BUILD │ ├── nghttp2-v1.64.patch │ ├── nghttp2-v1.66.patch │ └── nghttp2.cmake ├── ngtcp2 │ ├── BUILD │ ├── nghttp3.cmake │ ├── ngtcp2-v0.17.0.patch │ ├── ngtcp2-v1.10.patch │ ├── ngtcp2-v1.13.patch │ ├── ngtcp2-v1.4.patch │ ├── ngtcp2-v1.8.patch │ ├── ngtcp2-v1.9.patch │ └── ngtcp2.cmake ├── protobuf │ ├── BUILD │ ├── protobuf-declare.cmake │ ├── protobuf-pull.cmake │ ├── protobuf-v23.patch │ ├── protobuf-v24.patch │ ├── protobuf-v25.patch │ ├── protobuf-v26.patch │ ├── protobuf-v27.patch │ ├── protobuf-v28.patch │ ├── protobuf-v29.patch │ ├── protobuf-v3.13.0.patch │ ├── protobuf-v3.17.0.patch │ ├── protobuf-v3.19.0.patch │ ├── protobuf-v3.19.1.patch │ ├── protobuf-v3.19.4.patch │ ├── protobuf-v3.20.0.patch │ ├── protobuf-v3.20.1.patch │ ├── protobuf-v3.21.1.patch │ ├── protobuf-v3.21.12.patch │ ├── protobuf-v3.21.4.patch │ ├── protobuf-v3.22.patch │ ├── protobuf-v30.patch │ ├── protobuf-v31.patch │ ├── protobuf.cmake │ ├── run-build-release.bat.in │ ├── run-build-release.ps1.in │ ├── run-build-release.sh.in │ ├── upb-v25.patch │ ├── upb-v26.patch │ ├── upb-v27.patch │ ├── upb-v28.patch │ ├── upb-v29.patch │ ├── upb-v30.patch │ └── upb-v31.patch ├── re2 │ ├── BUILD │ └── re2.cmake ├── redis │ ├── BUILD │ ├── hiredis-v1.0.2.patch │ ├── hiredis-v1.1.0.patch │ ├── hiredis-v1.2.0.patch │ ├── hiredis-v1.3.patch │ └── hiredis.cmake ├── ssl │ ├── boringssl │ │ ├── BUILD │ │ ├── boringssl-16c8d3db1af20fcc04b5190b25242aadcb1fbb30.patch │ │ ├── boringssl-2ff4b968a7e0cfee66d9f151cb95635b43dc1d5b.patch │ │ ├── boringssl-479adf98d54a21c1d154aac59b2ce120e1d1a6d6.patch │ │ ├── boringssl-4fb158925f7753d80fb858cb0239dff893ef9f15.patch │ │ ├── boringssl-8872d958b7b07173bf29b8f3b8bf36a1ca8c94a3.patch │ │ ├── boringssl-ae72a4514c7afd150596b0a80947f3ca9b8363b5.patch │ │ ├── boringssl-b8b3e6e11166719a8ebfa43c0cde9ad7d57a84f6.patch │ │ ├── boringssl-b9232f9e27e5668bc0414879dcdedb2a59ea75f2.patch │ │ ├── boringssl-c63fadbde60a2224c22189d14c4001bbd2a3a629.patch │ │ ├── boringssl-dec0d8f681348af8bb675e07bd89989665fca8bc.patch │ │ ├── boringssl-e46383fc18d08def901b2ed5a194295693e905c7.patch │ │ └── boringssl.cmake │ ├── libressl │ │ ├── BUILD │ │ └── libressl.cmake │ ├── libsodium │ │ ├── BUILD │ │ ├── build-script │ │ │ ├── CMakeLists.txt │ │ │ └── libsodium-config.cmake.in │ │ └── libsodium.cmake │ ├── mbedtls │ │ ├── BUILD │ │ └── mbedtls.cmake │ ├── openssl │ │ ├── BUILD │ │ └── openssl.cmake │ └── port.cmake ├── telemetry │ ├── BUILD │ ├── opentelemetry-cpp-v0.6.0.patch │ ├── opentelemetry-cpp-v0.7.0.patch │ ├── opentelemetry-cpp-v1.0.1.patch │ ├── opentelemetry-cpp-v1.1.0.patch │ ├── opentelemetry-cpp-v1.10.0.patch │ ├── opentelemetry-cpp-v1.13.patch │ ├── opentelemetry-cpp-v1.14.patch │ ├── opentelemetry-cpp-v1.15.patch │ ├── opentelemetry-cpp-v1.17.patch │ ├── opentelemetry-cpp-v1.18.patch │ ├── opentelemetry-cpp-v1.19.patch │ ├── opentelemetry-cpp-v1.21.patch │ ├── opentelemetry-cpp-v1.3.0.patch │ ├── opentelemetry-cpp-v1.5.0.patch │ ├── opentelemetry-cpp-v1.8.1.patch │ ├── opentelemetry-cpp-v1.8.2.patch │ ├── opentelemetry-cpp-v1.9.0.patch │ ├── opentelemetry-cpp-v1.9.1.patch │ ├── opentelemetry-cpp.cmake │ ├── prometheus-cpp-v1.1.patch │ ├── prometheus-cpp-v1.2.patch │ ├── prometheus-cpp-v1.3.patch │ └── prometheus-cpp.cmake ├── test │ ├── BUILD │ ├── benchmark-v1.8.patch │ ├── benchmark-v1.9.4.patch │ ├── benchmark-v1.9.patch │ ├── benchmark.cmake │ ├── gtest-release-1.10.0.patch │ ├── gtest-release-1.11.0.patch │ └── gtest.cmake ├── web │ ├── BUILD │ ├── civetweb-v1.16.patch │ ├── civetweb.cmake │ ├── libwebsockets-v4.1.6.patch │ ├── libwebsockets-v4.2.0.patch │ ├── libwebsockets-v4.2.1.patch │ ├── libwebsockets-v4.2.2.patch │ ├── libwebsockets-v4.3.0.patch │ ├── libwebsockets-v4.3.1.patch │ ├── libwebsockets-v4.3.2.patch │ ├── libwebsockets-v4.3.3.patch │ ├── libwebsockets-v4.3.5.patch │ └── libwebsockets.cmake └── yaml-cpp │ ├── BUILD │ ├── yaml-cpp-0.8.patch │ └── yaml-cpp.cmake └── test ├── CMakeLists.txt ├── benchmark.cpp ├── gtest.cpp ├── main.cpp ├── test_pb.proto ├── test_upb-and-lua-binding.lua ├── upb-and-lua-binding.cpp └── upb └── CMakeLists.txt /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/.clang-format -------------------------------------------------------------------------------- /.cmake-format.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/.cmake-format.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CompilerOption.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/CompilerOption.cmake -------------------------------------------------------------------------------- /Import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/Import.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/LICENSE -------------------------------------------------------------------------------- /MigrateFromAtframeUtils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/MigrateFromAtframeUtils.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/README.md -------------------------------------------------------------------------------- /RecommendStdVersion.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/RecommendStdVersion.cmake -------------------------------------------------------------------------------- /TargetOption.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/TargetOption.cmake -------------------------------------------------------------------------------- /Toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/Toolchain.cmake -------------------------------------------------------------------------------- /ci/cmake_android_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ci/cmake_android_wrapper.sh -------------------------------------------------------------------------------- /ci/cmake_ios_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ci/cmake_ios_wrapper.sh -------------------------------------------------------------------------------- /ci/do_ci.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ci/do_ci.ps1 -------------------------------------------------------------------------------- /ci/do_ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ci/do_ci.sh -------------------------------------------------------------------------------- /ci/enable_windows_long_path.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ci/enable_windows_long_path.reg -------------------------------------------------------------------------------- /ci/format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ci/format.sh -------------------------------------------------------------------------------- /ci/requirements.txt: -------------------------------------------------------------------------------- 1 | cmake-format>=0.6.13 2 | PyYAML>=5.4.1 -------------------------------------------------------------------------------- /modules/AtframeworkToolsetAutoInheritOptions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/AtframeworkToolsetAutoInheritOptions.cmake -------------------------------------------------------------------------------- /modules/AtframeworkToolsetCommonDefinitions.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/AtframeworkToolsetCommonDefinitions.cmake -------------------------------------------------------------------------------- /modules/EchoWithColor.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/EchoWithColor.cmake -------------------------------------------------------------------------------- /modules/FindConfigurePackage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindConfigurePackage.cmake -------------------------------------------------------------------------------- /modules/FindJemalloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindJemalloc.cmake -------------------------------------------------------------------------------- /modules/FindLibevent.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindLibevent.cmake -------------------------------------------------------------------------------- /modules/FindLibnghttp2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindLibnghttp2.cmake -------------------------------------------------------------------------------- /modules/FindLibnghttp3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindLibnghttp3.cmake -------------------------------------------------------------------------------- /modules/FindLibngtcp2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindLibngtcp2.cmake -------------------------------------------------------------------------------- /modules/FindLibngtcp2_crypto_openssl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindLibngtcp2_crypto_openssl.cmake -------------------------------------------------------------------------------- /modules/FindLibngtcp2_crypto_ossl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindLibngtcp2_crypto_ossl.cmake -------------------------------------------------------------------------------- /modules/FindLibngtcp2_crypto_quictls.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindLibngtcp2_crypto_quictls.cmake -------------------------------------------------------------------------------- /modules/FindLibsodium.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindLibsodium.cmake -------------------------------------------------------------------------------- /modules/FindLibunwind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindLibunwind.cmake -------------------------------------------------------------------------------- /modules/FindLibuuid.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindLibuuid.cmake -------------------------------------------------------------------------------- /modules/FindLibuv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindLibuv.cmake -------------------------------------------------------------------------------- /modules/FindMbedTLS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindMbedTLS.cmake -------------------------------------------------------------------------------- /modules/FindPbc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindPbc.cmake -------------------------------------------------------------------------------- /modules/FindRapidjson.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/FindRapidjson.cmake -------------------------------------------------------------------------------- /modules/IncludeDirectoryRecurse.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/IncludeDirectoryRecurse.cmake -------------------------------------------------------------------------------- /modules/MaybePopulateSubmodule.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/MaybePopulateSubmodule.cmake -------------------------------------------------------------------------------- /modules/ProjectBuildTools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/ProjectBuildTools.cmake -------------------------------------------------------------------------------- /modules/ProjectSanitizerTools.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/ProjectSanitizerTools.cmake -------------------------------------------------------------------------------- /modules/crosscompiling/run-build-host.bat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/crosscompiling/run-build-host.bat.in -------------------------------------------------------------------------------- /modules/crosscompiling/run-build-host.ps1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/crosscompiling/run-build-host.ps1.in -------------------------------------------------------------------------------- /modules/crosscompiling/run-build-host.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/crosscompiling/run-build-host.sh.in -------------------------------------------------------------------------------- /modules/print_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/print_color.py -------------------------------------------------------------------------------- /modules/reset-host-build-envs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/reset-host-build-envs.ps1 -------------------------------------------------------------------------------- /modules/reset-host-build-envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/reset-host-build-envs.sh -------------------------------------------------------------------------------- /modules/restore-host-build-envs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/restore-host-build-envs.ps1 -------------------------------------------------------------------------------- /modules/restore-host-build-envs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/restore-host-build-envs.sh -------------------------------------------------------------------------------- /modules/toolchain/compiler/gnu.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/modules/toolchain/compiler/gnu.cmake -------------------------------------------------------------------------------- /ports/Configure.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/Configure.cmake -------------------------------------------------------------------------------- /ports/abseil-cpp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/abseil-cpp/BUILD -------------------------------------------------------------------------------- /ports/abseil-cpp/abseil-cpp-20200225.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/abseil-cpp/abseil-cpp-20200225.3.patch -------------------------------------------------------------------------------- /ports/abseil-cpp/abseil-cpp-20211102.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/abseil-cpp/abseil-cpp-20211102.0.patch -------------------------------------------------------------------------------- /ports/abseil-cpp/abseil-cpp-20220623.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/abseil-cpp/abseil-cpp-20220623.1.patch -------------------------------------------------------------------------------- /ports/abseil-cpp/abseil-cpp-20220623.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/abseil-cpp/abseil-cpp-20220623.2.patch -------------------------------------------------------------------------------- /ports/abseil-cpp/abseil-cpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/abseil-cpp/abseil-cpp.cmake -------------------------------------------------------------------------------- /ports/abseil-cpp/crosscompiling-host/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/abseil-cpp/crosscompiling-host/CMakeLists.txt -------------------------------------------------------------------------------- /ports/abseil-cpp/crosscompiling-host/cross-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/abseil-cpp/crosscompiling-host/cross-main.cpp -------------------------------------------------------------------------------- /ports/algorithm/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/algorithm/BUILD -------------------------------------------------------------------------------- /ports/algorithm/tbb-v2021.10.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/algorithm/tbb-v2021.10.0.patch -------------------------------------------------------------------------------- /ports/algorithm/tbb-v2021.11.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/algorithm/tbb-v2021.11.0.patch -------------------------------------------------------------------------------- /ports/algorithm/tbb-v2021.12.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/algorithm/tbb-v2021.12.0.patch -------------------------------------------------------------------------------- /ports/algorithm/tbb-v2021.13.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/algorithm/tbb-v2021.13.0.patch -------------------------------------------------------------------------------- /ports/algorithm/tbb-v2021.5.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/algorithm/tbb-v2021.5.0.patch -------------------------------------------------------------------------------- /ports/algorithm/tbb-v2021.6.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/algorithm/tbb-v2021.6.0.patch -------------------------------------------------------------------------------- /ports/algorithm/tbb-v2021.7.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/algorithm/tbb-v2021.7.0.patch -------------------------------------------------------------------------------- /ports/algorithm/tbb-v2021.8.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/algorithm/tbb-v2021.8.0.patch -------------------------------------------------------------------------------- /ports/algorithm/tbb-v2022.0.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/algorithm/tbb-v2022.0.0.patch -------------------------------------------------------------------------------- /ports/algorithm/tbb-v2022.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/algorithm/tbb-v2022.1.0.patch -------------------------------------------------------------------------------- /ports/algorithm/tbb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/algorithm/tbb.cmake -------------------------------------------------------------------------------- /ports/algorithm/xxhash-v0.8.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/algorithm/xxhash-v0.8.0.patch -------------------------------------------------------------------------------- /ports/algorithm/xxhash-v0.8.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/algorithm/xxhash-v0.8.1.patch -------------------------------------------------------------------------------- /ports/algorithm/xxhash-v0.8.2.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ports/algorithm/xxhash.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/algorithm/xxhash.cmake -------------------------------------------------------------------------------- /ports/cares/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/cares/BUILD -------------------------------------------------------------------------------- /ports/cares/c-ares.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/cares/c-ares.cmake -------------------------------------------------------------------------------- /ports/cares/cares-1.33.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/cares/cares-1.33.patch -------------------------------------------------------------------------------- /ports/cares/cares-1.34.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/cares/cares-1.34.patch -------------------------------------------------------------------------------- /ports/compression/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/compression/BUILD -------------------------------------------------------------------------------- /ports/compression/import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/compression/import.cmake -------------------------------------------------------------------------------- /ports/compression/lz4-build-script/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/compression/lz4-build-script/CMakeLists.txt -------------------------------------------------------------------------------- /ports/compression/lz4.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/compression/lz4.cmake -------------------------------------------------------------------------------- /ports/compression/snappy-1.1.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/compression/snappy-1.1.10.patch -------------------------------------------------------------------------------- /ports/compression/snappy-1.1.9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/compression/snappy-1.1.9.patch -------------------------------------------------------------------------------- /ports/compression/snappy-1.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/compression/snappy-1.2.patch -------------------------------------------------------------------------------- /ports/compression/snappy.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/compression/snappy.cmake -------------------------------------------------------------------------------- /ports/compression/zlib-v1.2.11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/compression/zlib-v1.2.11.patch -------------------------------------------------------------------------------- /ports/compression/zlib-v1.2.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/compression/zlib-v1.2.12.patch -------------------------------------------------------------------------------- /ports/compression/zlib-v1.2.13.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/compression/zlib-v1.2.13.patch -------------------------------------------------------------------------------- /ports/compression/zlib-v1.3.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/compression/zlib-v1.3.1.patch -------------------------------------------------------------------------------- /ports/compression/zlib-v1.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/compression/zlib-v1.3.patch -------------------------------------------------------------------------------- /ports/compression/zlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/compression/zlib.cmake -------------------------------------------------------------------------------- /ports/compression/zstd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/compression/zstd.cmake -------------------------------------------------------------------------------- /ports/flatbuffers/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/flatbuffers/BUILD -------------------------------------------------------------------------------- /ports/flatbuffers/crosscompiling-host/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/flatbuffers/crosscompiling-host/CMakeLists.txt -------------------------------------------------------------------------------- /ports/flatbuffers/crosscompiling-host/cross-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/flatbuffers/crosscompiling-host/cross-main.cpp -------------------------------------------------------------------------------- /ports/flatbuffers/crosscompiling-host/helloworld.fbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/flatbuffers/crosscompiling-host/helloworld.fbs -------------------------------------------------------------------------------- /ports/flatbuffers/flatbuffers-v24.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/flatbuffers/flatbuffers-v24.12.patch -------------------------------------------------------------------------------- /ports/flatbuffers/flatbuffers-v24.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/flatbuffers/flatbuffers-v24.3.patch -------------------------------------------------------------------------------- /ports/flatbuffers/flatbuffers-v25.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/flatbuffers/flatbuffers-v25.2.patch -------------------------------------------------------------------------------- /ports/flatbuffers/flatbuffers.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/flatbuffers/flatbuffers.cmake -------------------------------------------------------------------------------- /ports/fmtlib/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/fmtlib/BUILD -------------------------------------------------------------------------------- /ports/fmtlib/fmtlib-8.1.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/fmtlib/fmtlib-8.1.1.patch -------------------------------------------------------------------------------- /ports/fmtlib/fmtlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/fmtlib/fmtlib.cmake -------------------------------------------------------------------------------- /ports/grpc/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/BUILD -------------------------------------------------------------------------------- /ports/grpc/abseil-cpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/abseil-cpp.cmake -------------------------------------------------------------------------------- /ports/grpc/crosscompiling-grpc-host/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/crosscompiling-grpc-host/CMakeLists.txt -------------------------------------------------------------------------------- /ports/grpc/crosscompiling-grpc-host/client-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/crosscompiling-grpc-host/client-main.cpp -------------------------------------------------------------------------------- /ports/grpc/crosscompiling-grpc-host/helloworld.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/crosscompiling-grpc-host/helloworld.proto -------------------------------------------------------------------------------- /ports/grpc/crosscompiling-grpc-host/run-build-host.bat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/crosscompiling-grpc-host/run-build-host.bat.in -------------------------------------------------------------------------------- /ports/grpc/crosscompiling-grpc-host/run-build-host.ps1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/crosscompiling-grpc-host/run-build-host.ps1.in -------------------------------------------------------------------------------- /ports/grpc/crosscompiling-grpc-host/run-build-host.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/crosscompiling-grpc-host/run-build-host.sh.in -------------------------------------------------------------------------------- /ports/grpc/crosscompiling-grpc-host/server-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/crosscompiling-grpc-host/server-main.cpp -------------------------------------------------------------------------------- /ports/grpc/crosscompiling-upb-host/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/crosscompiling-upb-host/CMakeLists.txt -------------------------------------------------------------------------------- /ports/grpc/crosscompiling-upb-host/client-main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/crosscompiling-upb-host/client-main.cpp -------------------------------------------------------------------------------- /ports/grpc/crosscompiling-upb-host/run-build-host.bat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/crosscompiling-upb-host/run-build-host.bat.in -------------------------------------------------------------------------------- /ports/grpc/crosscompiling-upb-host/run-build-host.ps1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/crosscompiling-upb-host/run-build-host.ps1.in -------------------------------------------------------------------------------- /ports/grpc/crosscompiling-upb-host/run-build-host.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/crosscompiling-upb-host/run-build-host.sh.in -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.33.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.33.2.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.39.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.39.1.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.40.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.40.0.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.41.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.41.0.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.42.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.42.0.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.43.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.43.0.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.43.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.43.2.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.44.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.44.0.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.45.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.45.0.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.45.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.45.2.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.46.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.46.2.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.48.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.48.0.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.48.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.48.1.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.49.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.49.1.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.50.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.50.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.51.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.51.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.54.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.54.0.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.54.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.54.2.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.55.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.55.0.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.57.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.57.0.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.58.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.58.1.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.60.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.60.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.62.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.62.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.65.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.65.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.67.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.67.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.68.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.68.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.70.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.70.patch -------------------------------------------------------------------------------- /ports/grpc/grpc-v1.73.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc-v1.73.patch -------------------------------------------------------------------------------- /ports/grpc/grpc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/grpc.cmake -------------------------------------------------------------------------------- /ports/grpc/import.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/import.cmake -------------------------------------------------------------------------------- /ports/grpc/upb-455cfdb8ae60a1763e6d924e36851c6897a781bb.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/upb-455cfdb8ae60a1763e6d924e36851c6897a781bb.patch -------------------------------------------------------------------------------- /ports/grpc/upb-61a97efa24a5ce01fb8cc73c9d1e6e7060f8ea98.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/upb-61a97efa24a5ce01fb8cc73c9d1e6e7060f8ea98.patch -------------------------------------------------------------------------------- /ports/grpc/upb-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/upb-cmake.patch -------------------------------------------------------------------------------- /ports/grpc/upb-e4635f223e7d36dfbea3b722a4ca4807a7e882e2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/upb-e4635f223e7d36dfbea3b722a4ca4807a7e882e2.patch -------------------------------------------------------------------------------- /ports/grpc/upb-lua-binding/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/upb-lua-binding/CMakeLists.txt -------------------------------------------------------------------------------- /ports/grpc/upb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/grpc/upb.cmake -------------------------------------------------------------------------------- /ports/gsl/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/gsl/BUILD -------------------------------------------------------------------------------- /ports/gsl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/gsl/README.md -------------------------------------------------------------------------------- /ports/gsl/gnu-gsl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/gsl/gnu-gsl.cmake -------------------------------------------------------------------------------- /ports/gsl/gsl-lite.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/gsl/gsl-lite.cmake -------------------------------------------------------------------------------- /ports/gsl/ms-gsl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/gsl/ms-gsl.cmake -------------------------------------------------------------------------------- /ports/jemalloc/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/jemalloc/BUILD -------------------------------------------------------------------------------- /ports/jemalloc/jemalloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/jemalloc/jemalloc.cmake -------------------------------------------------------------------------------- /ports/json/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/json/BUILD -------------------------------------------------------------------------------- /ports/json/nlohmann_json.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/json/nlohmann_json.cmake -------------------------------------------------------------------------------- /ports/json/rapidjson-24b5e7a8b27f42fa16b96fc70aade9106cf7102f.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/json/rapidjson-24b5e7a8b27f42fa16b96fc70aade9106cf7102f.patch -------------------------------------------------------------------------------- /ports/json/rapidjson-476ffa2fd272243275a74c36952f210267dc3088.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/json/rapidjson-476ffa2fd272243275a74c36952f210267dc3088.patch -------------------------------------------------------------------------------- /ports/json/rapidjson-5ec44fb9206695e5293f610b0a46d21851d0c966.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/json/rapidjson-5ec44fb9206695e5293f610b0a46d21851d0c966.patch -------------------------------------------------------------------------------- /ports/json/rapidjson-f9d53419e912910fd8fa57d5705fa41425428c35.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/json/rapidjson-f9d53419e912910fd8fa57d5705fa41425428c35.patch -------------------------------------------------------------------------------- /ports/json/rapidjson.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/json/rapidjson.cmake -------------------------------------------------------------------------------- /ports/libcopp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcopp/BUILD -------------------------------------------------------------------------------- /ports/libcopp/libcopp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcopp/libcopp.cmake -------------------------------------------------------------------------------- /ports/libcurl/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcurl/BUILD -------------------------------------------------------------------------------- /ports/libcurl/libcurl-7.87.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcurl/libcurl-7.87.patch -------------------------------------------------------------------------------- /ports/libcurl/libcurl-8.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcurl/libcurl-8.0.patch -------------------------------------------------------------------------------- /ports/libcurl/libcurl-8.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcurl/libcurl-8.1.patch -------------------------------------------------------------------------------- /ports/libcurl/libcurl-8.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcurl/libcurl-8.10.patch -------------------------------------------------------------------------------- /ports/libcurl/libcurl-8.11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcurl/libcurl-8.11.patch -------------------------------------------------------------------------------- /ports/libcurl/libcurl-8.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcurl/libcurl-8.12.patch -------------------------------------------------------------------------------- /ports/libcurl/libcurl-8.14.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcurl/libcurl-8.14.patch -------------------------------------------------------------------------------- /ports/libcurl/libcurl-8.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcurl/libcurl-8.2.patch -------------------------------------------------------------------------------- /ports/libcurl/libcurl-8.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcurl/libcurl-8.5.patch -------------------------------------------------------------------------------- /ports/libcurl/libcurl-8.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcurl/libcurl-8.6.patch -------------------------------------------------------------------------------- /ports/libcurl/libcurl-8.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcurl/libcurl-8.7.patch -------------------------------------------------------------------------------- /ports/libcurl/libcurl-8.9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcurl/libcurl-8.9.patch -------------------------------------------------------------------------------- /ports/libcurl/libcurl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libcurl/libcurl.cmake -------------------------------------------------------------------------------- /ports/libevent/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libevent/BUILD -------------------------------------------------------------------------------- /ports/libevent/libevent-2.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libevent/libevent-2.1.patch -------------------------------------------------------------------------------- /ports/libevent/libevent.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libevent/libevent.cmake -------------------------------------------------------------------------------- /ports/libunwind/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libunwind/BUILD -------------------------------------------------------------------------------- /ports/libunwind/libunwind.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libunwind/libunwind.cmake -------------------------------------------------------------------------------- /ports/libuv/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libuv/BUILD -------------------------------------------------------------------------------- /ports/libuv/libuv-69b811f340f43ba5343eddbe167dd4882e136fe6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libuv/libuv-69b811f340f43ba5343eddbe167dd4882e136fe6.patch -------------------------------------------------------------------------------- /ports/libuv/libuv-v1.41.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libuv/libuv-v1.41.0.patch -------------------------------------------------------------------------------- /ports/libuv/libuv-v1.43.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libuv/libuv-v1.43.0.patch -------------------------------------------------------------------------------- /ports/libuv/libuv-v1.44.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libuv/libuv-v1.44.1.patch -------------------------------------------------------------------------------- /ports/libuv/libuv-v1.44.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libuv/libuv-v1.44.2.patch -------------------------------------------------------------------------------- /ports/libuv/libuv-v1.46.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libuv/libuv-v1.46.patch -------------------------------------------------------------------------------- /ports/libuv/libuv-v1.47.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libuv/libuv-v1.47.patch -------------------------------------------------------------------------------- /ports/libuv/libuv-v1.48.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libuv/libuv-v1.48.patch -------------------------------------------------------------------------------- /ports/libuv/libuv-v1.49.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libuv/libuv-v1.49.patch -------------------------------------------------------------------------------- /ports/libuv/libuv-v1.50.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libuv/libuv-v1.50.patch -------------------------------------------------------------------------------- /ports/libuv/libuv-v1.51.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libuv/libuv-v1.51.patch -------------------------------------------------------------------------------- /ports/libuv/libuv.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/libuv/libuv.cmake -------------------------------------------------------------------------------- /ports/lua/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/lua/BUILD -------------------------------------------------------------------------------- /ports/lua/build-script/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/lua/build-script/CMakeLists.txt -------------------------------------------------------------------------------- /ports/lua/build-script/lua-config.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | 3 | include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@-target.cmake") 4 | -------------------------------------------------------------------------------- /ports/lua/lua-v5.4.3.cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/lua/lua-v5.4.3.cross.patch -------------------------------------------------------------------------------- /ports/lua/lua-v5.4.4.cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/lua/lua-v5.4.4.cross.patch -------------------------------------------------------------------------------- /ports/lua/lua-v5.4.6.cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/lua/lua-v5.4.6.cross.patch -------------------------------------------------------------------------------- /ports/lua/lua-v5.4.7.cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/lua/lua-v5.4.7.cross.patch -------------------------------------------------------------------------------- /ports/lua/lua-v5.4.8.cross.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/lua/lua-v5.4.8.cross.patch -------------------------------------------------------------------------------- /ports/lua/lua.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/lua/lua.cmake -------------------------------------------------------------------------------- /ports/malloc/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/malloc/BUILD -------------------------------------------------------------------------------- /ports/malloc/jemalloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/malloc/jemalloc.cmake -------------------------------------------------------------------------------- /ports/malloc/mimalloc-v2.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/malloc/mimalloc-v2.0.patch -------------------------------------------------------------------------------- /ports/malloc/mimalloc-v2.1.7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/malloc/mimalloc-v2.1.7.patch -------------------------------------------------------------------------------- /ports/malloc/mimalloc-v2.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/malloc/mimalloc-v2.1.patch -------------------------------------------------------------------------------- /ports/malloc/mimalloc-v3.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/malloc/mimalloc-v3.0.patch -------------------------------------------------------------------------------- /ports/malloc/mimalloc-v3.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/malloc/mimalloc-v3.1.patch -------------------------------------------------------------------------------- /ports/malloc/mimalloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/malloc/mimalloc.cmake -------------------------------------------------------------------------------- /ports/malloc/rpmalloc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/malloc/rpmalloc.cmake -------------------------------------------------------------------------------- /ports/nghttp2/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/nghttp2/BUILD -------------------------------------------------------------------------------- /ports/nghttp2/nghttp2-v1.64.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/nghttp2/nghttp2-v1.64.patch -------------------------------------------------------------------------------- /ports/nghttp2/nghttp2-v1.66.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/nghttp2/nghttp2-v1.66.patch -------------------------------------------------------------------------------- /ports/nghttp2/nghttp2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/nghttp2/nghttp2.cmake -------------------------------------------------------------------------------- /ports/ngtcp2/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ngtcp2/BUILD -------------------------------------------------------------------------------- /ports/ngtcp2/nghttp3.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ngtcp2/nghttp3.cmake -------------------------------------------------------------------------------- /ports/ngtcp2/ngtcp2-v0.17.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ngtcp2/ngtcp2-v0.17.0.patch -------------------------------------------------------------------------------- /ports/ngtcp2/ngtcp2-v1.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ngtcp2/ngtcp2-v1.10.patch -------------------------------------------------------------------------------- /ports/ngtcp2/ngtcp2-v1.13.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ngtcp2/ngtcp2-v1.13.patch -------------------------------------------------------------------------------- /ports/ngtcp2/ngtcp2-v1.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ngtcp2/ngtcp2-v1.4.patch -------------------------------------------------------------------------------- /ports/ngtcp2/ngtcp2-v1.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ngtcp2/ngtcp2-v1.8.patch -------------------------------------------------------------------------------- /ports/ngtcp2/ngtcp2-v1.9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ngtcp2/ngtcp2-v1.9.patch -------------------------------------------------------------------------------- /ports/ngtcp2/ngtcp2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ngtcp2/ngtcp2.cmake -------------------------------------------------------------------------------- /ports/protobuf/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/BUILD -------------------------------------------------------------------------------- /ports/protobuf/protobuf-declare.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-declare.cmake -------------------------------------------------------------------------------- /ports/protobuf/protobuf-pull.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-pull.cmake -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v23.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v23.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v24.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v24.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v25.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v25.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v26.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v26.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v27.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v27.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v28.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v28.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v29.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v29.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v3.13.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v3.13.0.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v3.17.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v3.17.0.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v3.19.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v3.19.0.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v3.19.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v3.19.1.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v3.19.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v3.19.4.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v3.20.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v3.20.0.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v3.20.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v3.20.1.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v3.21.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v3.21.1.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v3.21.12.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v3.21.12.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v3.21.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v3.21.4.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v3.22.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v3.22.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v30.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v30.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf-v31.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf-v31.patch -------------------------------------------------------------------------------- /ports/protobuf/protobuf.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/protobuf.cmake -------------------------------------------------------------------------------- /ports/protobuf/run-build-release.bat.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/run-build-release.bat.in -------------------------------------------------------------------------------- /ports/protobuf/run-build-release.ps1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/run-build-release.ps1.in -------------------------------------------------------------------------------- /ports/protobuf/run-build-release.sh.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/run-build-release.sh.in -------------------------------------------------------------------------------- /ports/protobuf/upb-v25.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/upb-v25.patch -------------------------------------------------------------------------------- /ports/protobuf/upb-v26.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/upb-v26.patch -------------------------------------------------------------------------------- /ports/protobuf/upb-v27.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/upb-v27.patch -------------------------------------------------------------------------------- /ports/protobuf/upb-v28.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/upb-v28.patch -------------------------------------------------------------------------------- /ports/protobuf/upb-v29.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/protobuf/upb-v29.patch -------------------------------------------------------------------------------- /ports/protobuf/upb-v30.patch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ports/protobuf/upb-v31.patch: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ports/re2/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/re2/BUILD -------------------------------------------------------------------------------- /ports/re2/re2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/re2/re2.cmake -------------------------------------------------------------------------------- /ports/redis/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/redis/BUILD -------------------------------------------------------------------------------- /ports/redis/hiredis-v1.0.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/redis/hiredis-v1.0.2.patch -------------------------------------------------------------------------------- /ports/redis/hiredis-v1.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/redis/hiredis-v1.1.0.patch -------------------------------------------------------------------------------- /ports/redis/hiredis-v1.2.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/redis/hiredis-v1.2.0.patch -------------------------------------------------------------------------------- /ports/redis/hiredis-v1.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/redis/hiredis-v1.3.patch -------------------------------------------------------------------------------- /ports/redis/hiredis.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/redis/hiredis.cmake -------------------------------------------------------------------------------- /ports/ssl/boringssl/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/boringssl/BUILD -------------------------------------------------------------------------------- /ports/ssl/boringssl/boringssl-16c8d3db1af20fcc04b5190b25242aadcb1fbb30.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/boringssl/boringssl-16c8d3db1af20fcc04b5190b25242aadcb1fbb30.patch -------------------------------------------------------------------------------- /ports/ssl/boringssl/boringssl-2ff4b968a7e0cfee66d9f151cb95635b43dc1d5b.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/boringssl/boringssl-2ff4b968a7e0cfee66d9f151cb95635b43dc1d5b.patch -------------------------------------------------------------------------------- /ports/ssl/boringssl/boringssl-479adf98d54a21c1d154aac59b2ce120e1d1a6d6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/boringssl/boringssl-479adf98d54a21c1d154aac59b2ce120e1d1a6d6.patch -------------------------------------------------------------------------------- /ports/ssl/boringssl/boringssl-4fb158925f7753d80fb858cb0239dff893ef9f15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/boringssl/boringssl-4fb158925f7753d80fb858cb0239dff893ef9f15.patch -------------------------------------------------------------------------------- /ports/ssl/boringssl/boringssl-8872d958b7b07173bf29b8f3b8bf36a1ca8c94a3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/boringssl/boringssl-8872d958b7b07173bf29b8f3b8bf36a1ca8c94a3.patch -------------------------------------------------------------------------------- /ports/ssl/boringssl/boringssl-ae72a4514c7afd150596b0a80947f3ca9b8363b5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/boringssl/boringssl-ae72a4514c7afd150596b0a80947f3ca9b8363b5.patch -------------------------------------------------------------------------------- /ports/ssl/boringssl/boringssl-b8b3e6e11166719a8ebfa43c0cde9ad7d57a84f6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/boringssl/boringssl-b8b3e6e11166719a8ebfa43c0cde9ad7d57a84f6.patch -------------------------------------------------------------------------------- /ports/ssl/boringssl/boringssl-b9232f9e27e5668bc0414879dcdedb2a59ea75f2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/boringssl/boringssl-b9232f9e27e5668bc0414879dcdedb2a59ea75f2.patch -------------------------------------------------------------------------------- /ports/ssl/boringssl/boringssl-c63fadbde60a2224c22189d14c4001bbd2a3a629.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/boringssl/boringssl-c63fadbde60a2224c22189d14c4001bbd2a3a629.patch -------------------------------------------------------------------------------- /ports/ssl/boringssl/boringssl-dec0d8f681348af8bb675e07bd89989665fca8bc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/boringssl/boringssl-dec0d8f681348af8bb675e07bd89989665fca8bc.patch -------------------------------------------------------------------------------- /ports/ssl/boringssl/boringssl-e46383fc18d08def901b2ed5a194295693e905c7.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/boringssl/boringssl-e46383fc18d08def901b2ed5a194295693e905c7.patch -------------------------------------------------------------------------------- /ports/ssl/boringssl/boringssl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/boringssl/boringssl.cmake -------------------------------------------------------------------------------- /ports/ssl/libressl/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/libressl/BUILD -------------------------------------------------------------------------------- /ports/ssl/libressl/libressl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/libressl/libressl.cmake -------------------------------------------------------------------------------- /ports/ssl/libsodium/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/libsodium/BUILD -------------------------------------------------------------------------------- /ports/ssl/libsodium/build-script/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/libsodium/build-script/CMakeLists.txt -------------------------------------------------------------------------------- /ports/ssl/libsodium/build-script/libsodium-config.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | 3 | include("${CMAKE_CURRENT_LIST_DIR}/@PROJECT_NAME@-target.cmake") 4 | -------------------------------------------------------------------------------- /ports/ssl/libsodium/libsodium.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/libsodium/libsodium.cmake -------------------------------------------------------------------------------- /ports/ssl/mbedtls/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/mbedtls/BUILD -------------------------------------------------------------------------------- /ports/ssl/mbedtls/mbedtls.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/mbedtls/mbedtls.cmake -------------------------------------------------------------------------------- /ports/ssl/openssl/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/openssl/BUILD -------------------------------------------------------------------------------- /ports/ssl/openssl/openssl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/openssl/openssl.cmake -------------------------------------------------------------------------------- /ports/ssl/port.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/ssl/port.cmake -------------------------------------------------------------------------------- /ports/telemetry/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/BUILD -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v0.6.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v0.6.0.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v0.7.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v0.7.0.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.0.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v1.0.1.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.1.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v1.1.0.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.10.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v1.10.0.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.13.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v1.13.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.14.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v1.14.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.15.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v1.15.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.17.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v1.17.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.18.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v1.18.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.19.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v1.19.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.21.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v1.21.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.3.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v1.3.0.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.5.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v1.5.0.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.8.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v1.8.1.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.8.2.patch: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.9.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v1.9.0.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp-v1.9.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp-v1.9.1.patch -------------------------------------------------------------------------------- /ports/telemetry/opentelemetry-cpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/opentelemetry-cpp.cmake -------------------------------------------------------------------------------- /ports/telemetry/prometheus-cpp-v1.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/prometheus-cpp-v1.1.patch -------------------------------------------------------------------------------- /ports/telemetry/prometheus-cpp-v1.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/prometheus-cpp-v1.2.patch -------------------------------------------------------------------------------- /ports/telemetry/prometheus-cpp-v1.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/prometheus-cpp-v1.3.patch -------------------------------------------------------------------------------- /ports/telemetry/prometheus-cpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/telemetry/prometheus-cpp.cmake -------------------------------------------------------------------------------- /ports/test/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/test/BUILD -------------------------------------------------------------------------------- /ports/test/benchmark-v1.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/test/benchmark-v1.8.patch -------------------------------------------------------------------------------- /ports/test/benchmark-v1.9.4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/test/benchmark-v1.9.4.patch -------------------------------------------------------------------------------- /ports/test/benchmark-v1.9.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/test/benchmark-v1.9.patch -------------------------------------------------------------------------------- /ports/test/benchmark.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/test/benchmark.cmake -------------------------------------------------------------------------------- /ports/test/gtest-release-1.10.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/test/gtest-release-1.10.0.patch -------------------------------------------------------------------------------- /ports/test/gtest-release-1.11.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/test/gtest-release-1.11.0.patch -------------------------------------------------------------------------------- /ports/test/gtest.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/test/gtest.cmake -------------------------------------------------------------------------------- /ports/web/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/web/BUILD -------------------------------------------------------------------------------- /ports/web/civetweb-v1.16.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/web/civetweb-v1.16.patch -------------------------------------------------------------------------------- /ports/web/civetweb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/web/civetweb.cmake -------------------------------------------------------------------------------- /ports/web/libwebsockets-v4.1.6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/web/libwebsockets-v4.1.6.patch -------------------------------------------------------------------------------- /ports/web/libwebsockets-v4.2.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/web/libwebsockets-v4.2.0.patch -------------------------------------------------------------------------------- /ports/web/libwebsockets-v4.2.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/web/libwebsockets-v4.2.1.patch -------------------------------------------------------------------------------- /ports/web/libwebsockets-v4.2.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/web/libwebsockets-v4.2.2.patch -------------------------------------------------------------------------------- /ports/web/libwebsockets-v4.3.0.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/web/libwebsockets-v4.3.0.patch -------------------------------------------------------------------------------- /ports/web/libwebsockets-v4.3.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/web/libwebsockets-v4.3.1.patch -------------------------------------------------------------------------------- /ports/web/libwebsockets-v4.3.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/web/libwebsockets-v4.3.2.patch -------------------------------------------------------------------------------- /ports/web/libwebsockets-v4.3.3.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/web/libwebsockets-v4.3.3.patch -------------------------------------------------------------------------------- /ports/web/libwebsockets-v4.3.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/web/libwebsockets-v4.3.5.patch -------------------------------------------------------------------------------- /ports/web/libwebsockets.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/web/libwebsockets.cmake -------------------------------------------------------------------------------- /ports/yaml-cpp/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/yaml-cpp/BUILD -------------------------------------------------------------------------------- /ports/yaml-cpp/yaml-cpp-0.8.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/yaml-cpp/yaml-cpp-0.8.patch -------------------------------------------------------------------------------- /ports/yaml-cpp/yaml-cpp.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/ports/yaml-cpp/yaml-cpp.cmake -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/test/benchmark.cpp -------------------------------------------------------------------------------- /test/gtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/test/gtest.cpp -------------------------------------------------------------------------------- /test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/test/main.cpp -------------------------------------------------------------------------------- /test/test_pb.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/test/test_pb.proto -------------------------------------------------------------------------------- /test/test_upb-and-lua-binding.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/test/test_upb-and-lua-binding.lua -------------------------------------------------------------------------------- /test/upb-and-lua-binding.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/test/upb-and-lua-binding.cpp -------------------------------------------------------------------------------- /test/upb/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/owent/cmake-toolset/HEAD/test/upb/CMakeLists.txt --------------------------------------------------------------------------------