├── .clang-format ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── port-bug.md │ └── port-update.md ├── copilot-instructions.md ├── dependabot.yml ├── label-configuration.yml ├── prompts │ ├── check-environment.prompt.md │ ├── check-port-upstream.prompt.md │ ├── check-vcpkg-environment.prompt.md │ ├── create-port.prompt.md │ ├── install-port.prompt.md │ ├── review-port.prompt.md │ ├── search-port.prompt.md │ └── upgrade-port.prompt.md └── workflows │ ├── build-windows-hosted.yml │ ├── build.yml │ ├── cleanup.yml │ ├── deploy.yml │ ├── gh-pages.yml │ ├── labeler.yml │ ├── pr-review-checklist.yml │ └── weekly-maintenance.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── docs ├── .gitignore ├── 2025-11-prompt_designs.md ├── copilot-chat-tools-reference.md ├── guide-new-port-build.md ├── guide-new-port-download.md ├── guide-new-port.md ├── guide-update-port-versioning.md ├── guide-update-port.md ├── index.md ├── pull_request_template.md ├── references.md ├── review-checklist.md └── vcpkg-for-kor.md ├── mkdocs.yml ├── ports ├── abseil │ ├── portfile.cmake │ └── vcpkg.json ├── apple-crypto │ ├── fix-cmake.patch │ ├── portfile.cmake │ └── vcpkg.json ├── apple-nio-ssl │ ├── fix-swiftpm.patch │ ├── portfile.cmake │ └── vcpkg.json ├── asmjit │ ├── portfile.cmake │ └── vcpkg.json ├── basis-universal │ ├── CMakeLists.txt │ ├── fix-ambiguous.patch │ ├── fix-zstd-import.patch │ ├── portfile.cmake │ └── vcpkg.json ├── coreml-tools │ ├── fix-cmake.patch │ ├── fix-sources.patch │ ├── portfile.cmake │ └── vcpkg.json ├── cpuinfo │ ├── portfile.cmake │ └── vcpkg.json ├── cudnn-frontend │ ├── fix-thirdparty.patch │ ├── portfile.cmake │ └── vcpkg.json ├── cudnn │ ├── FindCUDNN.cmake │ ├── portfile.cmake │ ├── usage │ ├── vcpkg-cmake-wrapper.cmake │ └── vcpkg.json ├── d3d12-transition-layer │ ├── fix-vcpkg.patch │ ├── portfile.cmake │ └── vcpkg.json ├── directml │ ├── portfile.cmake │ └── vcpkg.json ├── dlpack │ ├── fix-cmake.patch │ ├── portfile.cmake │ └── vcpkg.json ├── eigen3 │ ├── portfile.cmake │ └── vcpkg.json ├── etcpak │ ├── fix-meson.patch │ ├── fix-sources.patch │ ├── portfile.cmake │ └── vcpkg.json ├── farmhash │ ├── CMakeLists.txt │ ├── portfile.cmake │ └── vcpkg.json ├── fbgemm │ ├── fix-cmakelists.patch │ ├── portfile.cmake │ └── vcpkg.json ├── fft2d │ ├── CMakeLists.txt │ ├── portfile.cmake │ └── vcpkg.json ├── fp16 │ ├── fix-bitcast.patch │ ├── portfile.cmake │ └── vcpkg.json ├── gemmlowp │ ├── portfile.cmake │ └── vcpkg.json ├── glslang │ ├── portfile.cmake │ ├── private-headers.patch │ └── vcpkg.json ├── godot │ ├── portfile.cmake │ └── vcpkg.json ├── google-filament │ ├── fix-cmake.patch │ ├── fix-sources.patch │ ├── portfile.cmake │ └── vcpkg.json ├── google-jni-bind │ ├── portfile.cmake │ └── vcpkg.json ├── google-pthreadpool │ ├── fix-cmake.patch │ ├── portfile.cmake │ └── vcpkg.json ├── libdispatch │ ├── fix-cmake.patch │ ├── fix-sources-windows.patch │ ├── portfile.cmake │ └── vcpkg.json ├── libkineto │ ├── fix-cmake.patch │ ├── fix-sources.patch │ ├── portfile.cmake │ └── vcpkg.json ├── liblzma │ ├── portfile.cmake │ └── vcpkg.json ├── llama-cpp │ ├── fix-3rdparty.patch │ ├── portfile.cmake │ └── vcpkg.json ├── magma │ ├── fix-cmake4.patch │ ├── fix-cuda13.patch │ ├── fix-no-tests.patch │ ├── fix-pkgconfig.patch │ ├── portfile.cmake │ └── vcpkg.json ├── metal-cpp │ ├── portfile.cmake │ ├── usage │ └── vcpkg.json ├── miniaudio │ ├── CMakeLists.txt │ ├── portfile.cmake │ └── vcpkg.json ├── minja │ ├── fix-cmake.patch │ ├── portfile.cmake │ └── vcpkg.json ├── ml-dtypes │ ├── CMakeLists.txt │ ├── portfile.cmake │ └── vcpkg.json ├── neon2sse │ ├── portfile.cmake │ └── vcpkg.json ├── nsync │ ├── fix-cmake.patch │ ├── portfile.cmake │ └── vcpkg.json ├── nvidia-cnmem │ ├── fix-cmake.patch │ ├── portfile.cmake │ └── vcpkg.json ├── nvidia-cudnn-frontend │ ├── portfile.cmake │ └── vcpkg.json ├── nvidia-cutlass │ ├── fix-find-cudnn.patch │ ├── portfile.cmake │ └── vcpkg.json ├── nvidia-nvbench │ ├── fix-cmake.patch │ ├── portfile.cmake │ └── vcpkg.json ├── nvidia-tools-extension-sdk │ ├── portfile.cmake │ └── vcpkg.json ├── nvidia-triton-client │ ├── fix-cmake.patch │ ├── portfile.cmake │ └── vcpkg.json ├── nvidia-triton-common │ ├── fix-cmake.patch │ ├── portfile.cmake │ └── vcpkg.json ├── nvidia-triton-core │ ├── fix-cmake.patch │ ├── fix-sources.patch │ ├── portfile.cmake │ └── vcpkg.json ├── nvtx3 │ ├── portfile.cmake │ └── vcpkg.json ├── onnx-optimizer │ ├── fix-cmakelists.patch │ ├── portfile.cmake │ └── vcpkg.json ├── onnx │ ├── fix-cmake-protobuf.patch │ ├── fix-cmake.patch │ ├── portfile.cmake │ ├── support-test.patch │ └── vcpkg.json ├── onnxruntime │ ├── fix-cmake-cuda.patch │ ├── fix-cmake-tensorrt.patch │ ├── fix-cmake-training.patch │ ├── fix-cmake.patch │ ├── fix-sources.patch │ ├── portfile.cmake │ └── vcpkg.json ├── opencl-headers │ ├── fix-headers.patch │ ├── portfile.cmake │ └── vcpkg.json ├── opencl-on-dx12 │ ├── fix-cmake.patch │ ├── fix-d3d12transitionlayer.patch │ ├── portfile.cmake │ └── vcpkg.json ├── opencl │ ├── portfile.cmake │ └── vcpkg.json ├── openjdk │ ├── linux-setup.cmake │ ├── portfile.cmake │ ├── vcpkg.json │ ├── windows-cleanup.cmake │ └── windows-setup.cmake ├── openssl │ ├── portfile.cmake │ └── vcpkg.json ├── openssl1 │ ├── detect_platform.cmake │ ├── portfile.cmake │ └── vcpkg.json ├── openssl3 │ ├── detect_platform.cmake │ ├── install-pc-files.cmake │ ├── openssl.pc.in │ ├── portfile.cmake │ └── vcpkg.json ├── psimd │ ├── portfile.cmake │ └── vcpkg.json ├── pthreadpool │ ├── fix-cmake.patch │ ├── portfile.cmake │ └── vcpkg.json ├── ruy │ ├── fix-cmake.patch │ ├── portfile.cmake │ └── vcpkg.json ├── smol-v │ ├── CMakeLists.txt │ ├── portfile.cmake │ └── vcpkg.json ├── spine-runtimes │ ├── CMakeLists.txt │ ├── fix-cmake.patch │ ├── portfile.cmake │ └── vcpkg.json ├── sse2neon │ ├── portfile.cmake │ └── vcpkg.json ├── system-qt5 │ ├── LICENSE │ ├── portfile.cmake │ ├── qt5_make_path_options.cmake │ ├── vcpkg-port-config.cmake │ └── vcpkg.json ├── system-qt6 │ ├── LICENSE │ ├── portfile.cmake │ ├── qt6_make_path_options.cmake │ ├── vcpkg-port-config.cmake │ └── vcpkg.json ├── tensorflow-lite │ ├── fix-cmake-c-api.patch │ ├── fix-cmake-vcpkg.patch │ ├── fix-headers.patch │ ├── portfile.cmake │ └── vcpkg.json ├── tensorpipe │ ├── TensorpipeConfig.cmake.in │ ├── fix-cmakelists.patch │ ├── portfile.cmake │ └── vcpkg.json ├── winpixeventruntime │ ├── portfile.cmake │ └── vcpkg.json ├── xatlas │ ├── CMakeLists.txt │ ├── portfile.cmake │ └── vcpkg.json ├── xnnpack │ ├── fix-cmake.patch │ ├── fix-emscripten.patch │ ├── portfile.cmake │ └── vcpkg.json ├── xnvctrl │ ├── CMakeLists.txt │ ├── portfile.cmake │ └── vcpkg.json ├── zenny-atomic │ ├── CMakeLists.txt │ ├── portfile.cmake │ └── vcpkg.json ├── zlib-ng │ ├── portfile.cmake │ └── vcpkg.json └── zlib │ ├── portfile.cmake │ └── vcpkg.json ├── requirements.txt ├── scripts ├── FindQtANGLE.cmake ├── gh-cleanup-cache.ps1 ├── gh-cleanup-runs.ps1 ├── headver.ps1 ├── install-cuda.ps1 ├── install-cudnn.ps1 ├── install-tensorrt.ps1 ├── make-configuration.ps1 ├── registry-add-version.ps1 ├── registry-format.ps1 ├── template.json └── update-portfile-sha512.ps1 ├── test ├── packages-apt.txt ├── packages-homebrew.txt ├── self-hosted.json ├── test-emsdk.json ├── vcpkg-configuration.json └── vcpkg.json ├── triplets ├── arm64-android.cmake ├── arm64-ios-simulator.cmake ├── x64-android.cmake ├── x64-ios-simulator.cmake ├── x64-linux.cmake └── x64-windows.cmake └── versions ├── a- ├── abseil.json ├── apple-crypto.json ├── apple-nio-ssl.json └── asmjit.json ├── b- └── basis-universal.json ├── baseline.json ├── c- ├── coreml-tools.json ├── cpuinfo.json ├── cudnn-frontend.json └── cudnn.json ├── d- ├── d3d12-transition-layer.json ├── directml.json └── dlpack.json ├── e- ├── eigen3.json └── etcpak.json ├── f- ├── farmhash.json ├── fbgemm.json ├── fft2d.json └── fp16.json ├── g- ├── gemmlowp.json ├── glslang.json ├── godot.json ├── google-filament.json ├── google-jni-bind.json └── google-pthreadpool.json ├── l- ├── libdispatch.json ├── libkineto.json ├── liblzma.json └── llama-cpp.json ├── m- ├── magma.json ├── metal-cpp.json ├── miniaudio.json ├── minja.json └── ml-dtypes.json ├── n- ├── neon2sse.json ├── nsync.json ├── nvidia-cnmem.json ├── nvidia-cudnn-frontend.json ├── nvidia-cutlass.json ├── nvidia-nvbench.json ├── nvidia-tools-extension-sdk.json ├── nvidia-triton-client.json ├── nvidia-triton-common.json ├── nvidia-triton-core.json └── nvtx3.json ├── o- ├── onnx-optimizer.json ├── onnx.json ├── onnxruntime.json ├── opencl-headers.json ├── opencl-on-dx12.json ├── opencl.json ├── openjdk.json ├── openssl.json ├── openssl1.json └── openssl3.json ├── p- ├── psimd.json └── pthreadpool.json ├── r- └── ruy.json ├── s- ├── smol-v.json ├── spine-runtimes.json ├── sse2neon.json ├── system-qt5.json └── system-qt6.json ├── t- ├── tensorflow-lite.json └── tensorpipe.json ├── w- └── winpixeventruntime.json ├── x- ├── xatlas.json ├── xnnpack.json └── xnvctrl.json └── z- ├── zenny-atomic.json ├── zlib-ng.json └── zlib.json /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/port-bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/ISSUE_TEMPLATE/port-bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/port-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/ISSUE_TEMPLATE/port-update.md -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/label-configuration.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/label-configuration.yml -------------------------------------------------------------------------------- /.github/prompts/check-environment.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/prompts/check-environment.prompt.md -------------------------------------------------------------------------------- /.github/prompts/check-port-upstream.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/prompts/check-port-upstream.prompt.md -------------------------------------------------------------------------------- /.github/prompts/check-vcpkg-environment.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/prompts/check-vcpkg-environment.prompt.md -------------------------------------------------------------------------------- /.github/prompts/create-port.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/prompts/create-port.prompt.md -------------------------------------------------------------------------------- /.github/prompts/install-port.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/prompts/install-port.prompt.md -------------------------------------------------------------------------------- /.github/prompts/review-port.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/prompts/review-port.prompt.md -------------------------------------------------------------------------------- /.github/prompts/search-port.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/prompts/search-port.prompt.md -------------------------------------------------------------------------------- /.github/prompts/upgrade-port.prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/prompts/upgrade-port.prompt.md -------------------------------------------------------------------------------- /.github/workflows/build-windows-hosted.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/workflows/build-windows-hosted.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/cleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/workflows/cleanup.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/gh-pages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/workflows/gh-pages.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/pr-review-checklist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/workflows/pr-review-checklist.yml -------------------------------------------------------------------------------- /.github/workflows/weekly-maintenance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.github/workflows/weekly-maintenance.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | images 2 | -------------------------------------------------------------------------------- /docs/2025-11-prompt_designs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/docs/2025-11-prompt_designs.md -------------------------------------------------------------------------------- /docs/copilot-chat-tools-reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/docs/copilot-chat-tools-reference.md -------------------------------------------------------------------------------- /docs/guide-new-port-build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/docs/guide-new-port-build.md -------------------------------------------------------------------------------- /docs/guide-new-port-download.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/docs/guide-new-port-download.md -------------------------------------------------------------------------------- /docs/guide-new-port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/docs/guide-new-port.md -------------------------------------------------------------------------------- /docs/guide-update-port-versioning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/docs/guide-update-port-versioning.md -------------------------------------------------------------------------------- /docs/guide-update-port.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/docs/guide-update-port.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/docs/pull_request_template.md -------------------------------------------------------------------------------- /docs/references.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/docs/references.md -------------------------------------------------------------------------------- /docs/review-checklist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/docs/review-checklist.md -------------------------------------------------------------------------------- /docs/vcpkg-for-kor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/docs/vcpkg-for-kor.md -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /ports/abseil/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/abseil/portfile.cmake -------------------------------------------------------------------------------- /ports/abseil/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/abseil/vcpkg.json -------------------------------------------------------------------------------- /ports/apple-crypto/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/apple-crypto/fix-cmake.patch -------------------------------------------------------------------------------- /ports/apple-crypto/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/apple-crypto/portfile.cmake -------------------------------------------------------------------------------- /ports/apple-crypto/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/apple-crypto/vcpkg.json -------------------------------------------------------------------------------- /ports/apple-nio-ssl/fix-swiftpm.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/apple-nio-ssl/fix-swiftpm.patch -------------------------------------------------------------------------------- /ports/apple-nio-ssl/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/apple-nio-ssl/portfile.cmake -------------------------------------------------------------------------------- /ports/apple-nio-ssl/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/apple-nio-ssl/vcpkg.json -------------------------------------------------------------------------------- /ports/asmjit/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/asmjit/portfile.cmake -------------------------------------------------------------------------------- /ports/asmjit/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/asmjit/vcpkg.json -------------------------------------------------------------------------------- /ports/basis-universal/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/basis-universal/CMakeLists.txt -------------------------------------------------------------------------------- /ports/basis-universal/fix-ambiguous.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/basis-universal/fix-ambiguous.patch -------------------------------------------------------------------------------- /ports/basis-universal/fix-zstd-import.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/basis-universal/fix-zstd-import.patch -------------------------------------------------------------------------------- /ports/basis-universal/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/basis-universal/portfile.cmake -------------------------------------------------------------------------------- /ports/basis-universal/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/basis-universal/vcpkg.json -------------------------------------------------------------------------------- /ports/coreml-tools/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/coreml-tools/fix-cmake.patch -------------------------------------------------------------------------------- /ports/coreml-tools/fix-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/coreml-tools/fix-sources.patch -------------------------------------------------------------------------------- /ports/coreml-tools/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/coreml-tools/portfile.cmake -------------------------------------------------------------------------------- /ports/coreml-tools/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/coreml-tools/vcpkg.json -------------------------------------------------------------------------------- /ports/cpuinfo/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/cpuinfo/portfile.cmake -------------------------------------------------------------------------------- /ports/cpuinfo/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/cpuinfo/vcpkg.json -------------------------------------------------------------------------------- /ports/cudnn-frontend/fix-thirdparty.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/cudnn-frontend/fix-thirdparty.patch -------------------------------------------------------------------------------- /ports/cudnn-frontend/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/cudnn-frontend/portfile.cmake -------------------------------------------------------------------------------- /ports/cudnn-frontend/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/cudnn-frontend/vcpkg.json -------------------------------------------------------------------------------- /ports/cudnn/FindCUDNN.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/cudnn/FindCUDNN.cmake -------------------------------------------------------------------------------- /ports/cudnn/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/cudnn/portfile.cmake -------------------------------------------------------------------------------- /ports/cudnn/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/cudnn/usage -------------------------------------------------------------------------------- /ports/cudnn/vcpkg-cmake-wrapper.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/cudnn/vcpkg-cmake-wrapper.cmake -------------------------------------------------------------------------------- /ports/cudnn/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/cudnn/vcpkg.json -------------------------------------------------------------------------------- /ports/d3d12-transition-layer/fix-vcpkg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/d3d12-transition-layer/fix-vcpkg.patch -------------------------------------------------------------------------------- /ports/d3d12-transition-layer/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/d3d12-transition-layer/portfile.cmake -------------------------------------------------------------------------------- /ports/d3d12-transition-layer/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/d3d12-transition-layer/vcpkg.json -------------------------------------------------------------------------------- /ports/directml/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/directml/portfile.cmake -------------------------------------------------------------------------------- /ports/directml/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/directml/vcpkg.json -------------------------------------------------------------------------------- /ports/dlpack/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/dlpack/fix-cmake.patch -------------------------------------------------------------------------------- /ports/dlpack/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/dlpack/portfile.cmake -------------------------------------------------------------------------------- /ports/dlpack/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/dlpack/vcpkg.json -------------------------------------------------------------------------------- /ports/eigen3/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/eigen3/portfile.cmake -------------------------------------------------------------------------------- /ports/eigen3/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/eigen3/vcpkg.json -------------------------------------------------------------------------------- /ports/etcpak/fix-meson.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/etcpak/fix-meson.patch -------------------------------------------------------------------------------- /ports/etcpak/fix-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/etcpak/fix-sources.patch -------------------------------------------------------------------------------- /ports/etcpak/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/etcpak/portfile.cmake -------------------------------------------------------------------------------- /ports/etcpak/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/etcpak/vcpkg.json -------------------------------------------------------------------------------- /ports/farmhash/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/farmhash/CMakeLists.txt -------------------------------------------------------------------------------- /ports/farmhash/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/farmhash/portfile.cmake -------------------------------------------------------------------------------- /ports/farmhash/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/farmhash/vcpkg.json -------------------------------------------------------------------------------- /ports/fbgemm/fix-cmakelists.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/fbgemm/fix-cmakelists.patch -------------------------------------------------------------------------------- /ports/fbgemm/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/fbgemm/portfile.cmake -------------------------------------------------------------------------------- /ports/fbgemm/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/fbgemm/vcpkg.json -------------------------------------------------------------------------------- /ports/fft2d/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/fft2d/CMakeLists.txt -------------------------------------------------------------------------------- /ports/fft2d/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/fft2d/portfile.cmake -------------------------------------------------------------------------------- /ports/fft2d/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/fft2d/vcpkg.json -------------------------------------------------------------------------------- /ports/fp16/fix-bitcast.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/fp16/fix-bitcast.patch -------------------------------------------------------------------------------- /ports/fp16/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/fp16/portfile.cmake -------------------------------------------------------------------------------- /ports/fp16/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/fp16/vcpkg.json -------------------------------------------------------------------------------- /ports/gemmlowp/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/gemmlowp/portfile.cmake -------------------------------------------------------------------------------- /ports/gemmlowp/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/gemmlowp/vcpkg.json -------------------------------------------------------------------------------- /ports/glslang/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/glslang/portfile.cmake -------------------------------------------------------------------------------- /ports/glslang/private-headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/glslang/private-headers.patch -------------------------------------------------------------------------------- /ports/glslang/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/glslang/vcpkg.json -------------------------------------------------------------------------------- /ports/godot/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/godot/portfile.cmake -------------------------------------------------------------------------------- /ports/godot/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/godot/vcpkg.json -------------------------------------------------------------------------------- /ports/google-filament/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/google-filament/fix-cmake.patch -------------------------------------------------------------------------------- /ports/google-filament/fix-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/google-filament/fix-sources.patch -------------------------------------------------------------------------------- /ports/google-filament/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/google-filament/portfile.cmake -------------------------------------------------------------------------------- /ports/google-filament/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/google-filament/vcpkg.json -------------------------------------------------------------------------------- /ports/google-jni-bind/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/google-jni-bind/portfile.cmake -------------------------------------------------------------------------------- /ports/google-jni-bind/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/google-jni-bind/vcpkg.json -------------------------------------------------------------------------------- /ports/google-pthreadpool/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/google-pthreadpool/fix-cmake.patch -------------------------------------------------------------------------------- /ports/google-pthreadpool/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/google-pthreadpool/portfile.cmake -------------------------------------------------------------------------------- /ports/google-pthreadpool/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/google-pthreadpool/vcpkg.json -------------------------------------------------------------------------------- /ports/libdispatch/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/libdispatch/fix-cmake.patch -------------------------------------------------------------------------------- /ports/libdispatch/fix-sources-windows.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/libdispatch/fix-sources-windows.patch -------------------------------------------------------------------------------- /ports/libdispatch/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/libdispatch/portfile.cmake -------------------------------------------------------------------------------- /ports/libdispatch/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/libdispatch/vcpkg.json -------------------------------------------------------------------------------- /ports/libkineto/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/libkineto/fix-cmake.patch -------------------------------------------------------------------------------- /ports/libkineto/fix-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/libkineto/fix-sources.patch -------------------------------------------------------------------------------- /ports/libkineto/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/libkineto/portfile.cmake -------------------------------------------------------------------------------- /ports/libkineto/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/libkineto/vcpkg.json -------------------------------------------------------------------------------- /ports/liblzma/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/liblzma/portfile.cmake -------------------------------------------------------------------------------- /ports/liblzma/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/liblzma/vcpkg.json -------------------------------------------------------------------------------- /ports/llama-cpp/fix-3rdparty.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/llama-cpp/fix-3rdparty.patch -------------------------------------------------------------------------------- /ports/llama-cpp/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/llama-cpp/portfile.cmake -------------------------------------------------------------------------------- /ports/llama-cpp/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/llama-cpp/vcpkg.json -------------------------------------------------------------------------------- /ports/magma/fix-cmake4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/magma/fix-cmake4.patch -------------------------------------------------------------------------------- /ports/magma/fix-cuda13.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/magma/fix-cuda13.patch -------------------------------------------------------------------------------- /ports/magma/fix-no-tests.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/magma/fix-no-tests.patch -------------------------------------------------------------------------------- /ports/magma/fix-pkgconfig.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/magma/fix-pkgconfig.patch -------------------------------------------------------------------------------- /ports/magma/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/magma/portfile.cmake -------------------------------------------------------------------------------- /ports/magma/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/magma/vcpkg.json -------------------------------------------------------------------------------- /ports/metal-cpp/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/metal-cpp/portfile.cmake -------------------------------------------------------------------------------- /ports/metal-cpp/usage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/metal-cpp/usage -------------------------------------------------------------------------------- /ports/metal-cpp/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/metal-cpp/vcpkg.json -------------------------------------------------------------------------------- /ports/miniaudio/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/miniaudio/CMakeLists.txt -------------------------------------------------------------------------------- /ports/miniaudio/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/miniaudio/portfile.cmake -------------------------------------------------------------------------------- /ports/miniaudio/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/miniaudio/vcpkg.json -------------------------------------------------------------------------------- /ports/minja/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/minja/fix-cmake.patch -------------------------------------------------------------------------------- /ports/minja/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/minja/portfile.cmake -------------------------------------------------------------------------------- /ports/minja/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/minja/vcpkg.json -------------------------------------------------------------------------------- /ports/ml-dtypes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/ml-dtypes/CMakeLists.txt -------------------------------------------------------------------------------- /ports/ml-dtypes/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/ml-dtypes/portfile.cmake -------------------------------------------------------------------------------- /ports/ml-dtypes/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/ml-dtypes/vcpkg.json -------------------------------------------------------------------------------- /ports/neon2sse/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/neon2sse/portfile.cmake -------------------------------------------------------------------------------- /ports/neon2sse/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/neon2sse/vcpkg.json -------------------------------------------------------------------------------- /ports/nsync/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nsync/fix-cmake.patch -------------------------------------------------------------------------------- /ports/nsync/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nsync/portfile.cmake -------------------------------------------------------------------------------- /ports/nsync/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nsync/vcpkg.json -------------------------------------------------------------------------------- /ports/nvidia-cnmem/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-cnmem/fix-cmake.patch -------------------------------------------------------------------------------- /ports/nvidia-cnmem/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-cnmem/portfile.cmake -------------------------------------------------------------------------------- /ports/nvidia-cnmem/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-cnmem/vcpkg.json -------------------------------------------------------------------------------- /ports/nvidia-cudnn-frontend/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-cudnn-frontend/portfile.cmake -------------------------------------------------------------------------------- /ports/nvidia-cudnn-frontend/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-cudnn-frontend/vcpkg.json -------------------------------------------------------------------------------- /ports/nvidia-cutlass/fix-find-cudnn.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-cutlass/fix-find-cudnn.patch -------------------------------------------------------------------------------- /ports/nvidia-cutlass/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-cutlass/portfile.cmake -------------------------------------------------------------------------------- /ports/nvidia-cutlass/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-cutlass/vcpkg.json -------------------------------------------------------------------------------- /ports/nvidia-nvbench/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-nvbench/fix-cmake.patch -------------------------------------------------------------------------------- /ports/nvidia-nvbench/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-nvbench/portfile.cmake -------------------------------------------------------------------------------- /ports/nvidia-nvbench/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-nvbench/vcpkg.json -------------------------------------------------------------------------------- /ports/nvidia-tools-extension-sdk/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-tools-extension-sdk/portfile.cmake -------------------------------------------------------------------------------- /ports/nvidia-tools-extension-sdk/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-tools-extension-sdk/vcpkg.json -------------------------------------------------------------------------------- /ports/nvidia-triton-client/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-triton-client/fix-cmake.patch -------------------------------------------------------------------------------- /ports/nvidia-triton-client/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-triton-client/portfile.cmake -------------------------------------------------------------------------------- /ports/nvidia-triton-client/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-triton-client/vcpkg.json -------------------------------------------------------------------------------- /ports/nvidia-triton-common/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-triton-common/fix-cmake.patch -------------------------------------------------------------------------------- /ports/nvidia-triton-common/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-triton-common/portfile.cmake -------------------------------------------------------------------------------- /ports/nvidia-triton-common/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-triton-common/vcpkg.json -------------------------------------------------------------------------------- /ports/nvidia-triton-core/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-triton-core/fix-cmake.patch -------------------------------------------------------------------------------- /ports/nvidia-triton-core/fix-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-triton-core/fix-sources.patch -------------------------------------------------------------------------------- /ports/nvidia-triton-core/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-triton-core/portfile.cmake -------------------------------------------------------------------------------- /ports/nvidia-triton-core/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvidia-triton-core/vcpkg.json -------------------------------------------------------------------------------- /ports/nvtx3/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvtx3/portfile.cmake -------------------------------------------------------------------------------- /ports/nvtx3/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/nvtx3/vcpkg.json -------------------------------------------------------------------------------- /ports/onnx-optimizer/fix-cmakelists.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/onnx-optimizer/fix-cmakelists.patch -------------------------------------------------------------------------------- /ports/onnx-optimizer/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/onnx-optimizer/portfile.cmake -------------------------------------------------------------------------------- /ports/onnx-optimizer/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/onnx-optimizer/vcpkg.json -------------------------------------------------------------------------------- /ports/onnx/fix-cmake-protobuf.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/onnx/fix-cmake-protobuf.patch -------------------------------------------------------------------------------- /ports/onnx/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/onnx/fix-cmake.patch -------------------------------------------------------------------------------- /ports/onnx/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/onnx/portfile.cmake -------------------------------------------------------------------------------- /ports/onnx/support-test.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/onnx/support-test.patch -------------------------------------------------------------------------------- /ports/onnx/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/onnx/vcpkg.json -------------------------------------------------------------------------------- /ports/onnxruntime/fix-cmake-cuda.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/onnxruntime/fix-cmake-cuda.patch -------------------------------------------------------------------------------- /ports/onnxruntime/fix-cmake-tensorrt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/onnxruntime/fix-cmake-tensorrt.patch -------------------------------------------------------------------------------- /ports/onnxruntime/fix-cmake-training.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/onnxruntime/fix-cmake-training.patch -------------------------------------------------------------------------------- /ports/onnxruntime/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/onnxruntime/fix-cmake.patch -------------------------------------------------------------------------------- /ports/onnxruntime/fix-sources.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/onnxruntime/fix-sources.patch -------------------------------------------------------------------------------- /ports/onnxruntime/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/onnxruntime/portfile.cmake -------------------------------------------------------------------------------- /ports/onnxruntime/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/onnxruntime/vcpkg.json -------------------------------------------------------------------------------- /ports/opencl-headers/fix-headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/opencl-headers/fix-headers.patch -------------------------------------------------------------------------------- /ports/opencl-headers/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/opencl-headers/portfile.cmake -------------------------------------------------------------------------------- /ports/opencl-headers/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/opencl-headers/vcpkg.json -------------------------------------------------------------------------------- /ports/opencl-on-dx12/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/opencl-on-dx12/fix-cmake.patch -------------------------------------------------------------------------------- /ports/opencl-on-dx12/fix-d3d12transitionlayer.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/opencl-on-dx12/fix-d3d12transitionlayer.patch -------------------------------------------------------------------------------- /ports/opencl-on-dx12/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/opencl-on-dx12/portfile.cmake -------------------------------------------------------------------------------- /ports/opencl-on-dx12/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/opencl-on-dx12/vcpkg.json -------------------------------------------------------------------------------- /ports/opencl/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/opencl/portfile.cmake -------------------------------------------------------------------------------- /ports/opencl/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/opencl/vcpkg.json -------------------------------------------------------------------------------- /ports/openjdk/linux-setup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/openjdk/linux-setup.cmake -------------------------------------------------------------------------------- /ports/openjdk/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/openjdk/portfile.cmake -------------------------------------------------------------------------------- /ports/openjdk/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/openjdk/vcpkg.json -------------------------------------------------------------------------------- /ports/openjdk/windows-cleanup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/openjdk/windows-cleanup.cmake -------------------------------------------------------------------------------- /ports/openjdk/windows-setup.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/openjdk/windows-setup.cmake -------------------------------------------------------------------------------- /ports/openssl/portfile.cmake: -------------------------------------------------------------------------------- 1 | # see port/openssl3 for the details 2 | set(VCPKG_POLICY_EMPTY_PACKAGE enabled) -------------------------------------------------------------------------------- /ports/openssl/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/openssl/vcpkg.json -------------------------------------------------------------------------------- /ports/openssl1/detect_platform.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/openssl1/detect_platform.cmake -------------------------------------------------------------------------------- /ports/openssl1/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/openssl1/portfile.cmake -------------------------------------------------------------------------------- /ports/openssl1/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/openssl1/vcpkg.json -------------------------------------------------------------------------------- /ports/openssl3/detect_platform.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/openssl3/detect_platform.cmake -------------------------------------------------------------------------------- /ports/openssl3/install-pc-files.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/openssl3/install-pc-files.cmake -------------------------------------------------------------------------------- /ports/openssl3/openssl.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/openssl3/openssl.pc.in -------------------------------------------------------------------------------- /ports/openssl3/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/openssl3/portfile.cmake -------------------------------------------------------------------------------- /ports/openssl3/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/openssl3/vcpkg.json -------------------------------------------------------------------------------- /ports/psimd/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/psimd/portfile.cmake -------------------------------------------------------------------------------- /ports/psimd/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/psimd/vcpkg.json -------------------------------------------------------------------------------- /ports/pthreadpool/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/pthreadpool/fix-cmake.patch -------------------------------------------------------------------------------- /ports/pthreadpool/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/pthreadpool/portfile.cmake -------------------------------------------------------------------------------- /ports/pthreadpool/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/pthreadpool/vcpkg.json -------------------------------------------------------------------------------- /ports/ruy/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/ruy/fix-cmake.patch -------------------------------------------------------------------------------- /ports/ruy/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/ruy/portfile.cmake -------------------------------------------------------------------------------- /ports/ruy/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/ruy/vcpkg.json -------------------------------------------------------------------------------- /ports/smol-v/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/smol-v/CMakeLists.txt -------------------------------------------------------------------------------- /ports/smol-v/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/smol-v/portfile.cmake -------------------------------------------------------------------------------- /ports/smol-v/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/smol-v/vcpkg.json -------------------------------------------------------------------------------- /ports/spine-runtimes/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/spine-runtimes/CMakeLists.txt -------------------------------------------------------------------------------- /ports/spine-runtimes/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/spine-runtimes/fix-cmake.patch -------------------------------------------------------------------------------- /ports/spine-runtimes/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/spine-runtimes/portfile.cmake -------------------------------------------------------------------------------- /ports/spine-runtimes/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/spine-runtimes/vcpkg.json -------------------------------------------------------------------------------- /ports/sse2neon/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/sse2neon/portfile.cmake -------------------------------------------------------------------------------- /ports/sse2neon/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/sse2neon/vcpkg.json -------------------------------------------------------------------------------- /ports/system-qt5/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/system-qt5/LICENSE -------------------------------------------------------------------------------- /ports/system-qt5/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/system-qt5/portfile.cmake -------------------------------------------------------------------------------- /ports/system-qt5/qt5_make_path_options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/system-qt5/qt5_make_path_options.cmake -------------------------------------------------------------------------------- /ports/system-qt5/vcpkg-port-config.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/qt5_make_path_options.cmake") 2 | -------------------------------------------------------------------------------- /ports/system-qt5/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/system-qt5/vcpkg.json -------------------------------------------------------------------------------- /ports/system-qt6/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/system-qt6/LICENSE -------------------------------------------------------------------------------- /ports/system-qt6/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/system-qt6/portfile.cmake -------------------------------------------------------------------------------- /ports/system-qt6/qt6_make_path_options.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/system-qt6/qt6_make_path_options.cmake -------------------------------------------------------------------------------- /ports/system-qt6/vcpkg-port-config.cmake: -------------------------------------------------------------------------------- 1 | include("${CMAKE_CURRENT_LIST_DIR}/qt6_make_path_options.cmake") 2 | -------------------------------------------------------------------------------- /ports/system-qt6/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/system-qt6/vcpkg.json -------------------------------------------------------------------------------- /ports/tensorflow-lite/fix-cmake-c-api.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/tensorflow-lite/fix-cmake-c-api.patch -------------------------------------------------------------------------------- /ports/tensorflow-lite/fix-cmake-vcpkg.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/tensorflow-lite/fix-cmake-vcpkg.patch -------------------------------------------------------------------------------- /ports/tensorflow-lite/fix-headers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/tensorflow-lite/fix-headers.patch -------------------------------------------------------------------------------- /ports/tensorflow-lite/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/tensorflow-lite/portfile.cmake -------------------------------------------------------------------------------- /ports/tensorflow-lite/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/tensorflow-lite/vcpkg.json -------------------------------------------------------------------------------- /ports/tensorpipe/TensorpipeConfig.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/tensorpipe/TensorpipeConfig.cmake.in -------------------------------------------------------------------------------- /ports/tensorpipe/fix-cmakelists.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/tensorpipe/fix-cmakelists.patch -------------------------------------------------------------------------------- /ports/tensorpipe/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/tensorpipe/portfile.cmake -------------------------------------------------------------------------------- /ports/tensorpipe/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/tensorpipe/vcpkg.json -------------------------------------------------------------------------------- /ports/winpixeventruntime/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/winpixeventruntime/portfile.cmake -------------------------------------------------------------------------------- /ports/winpixeventruntime/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/winpixeventruntime/vcpkg.json -------------------------------------------------------------------------------- /ports/xatlas/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/xatlas/CMakeLists.txt -------------------------------------------------------------------------------- /ports/xatlas/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/xatlas/portfile.cmake -------------------------------------------------------------------------------- /ports/xatlas/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/xatlas/vcpkg.json -------------------------------------------------------------------------------- /ports/xnnpack/fix-cmake.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/xnnpack/fix-cmake.patch -------------------------------------------------------------------------------- /ports/xnnpack/fix-emscripten.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/xnnpack/fix-emscripten.patch -------------------------------------------------------------------------------- /ports/xnnpack/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/xnnpack/portfile.cmake -------------------------------------------------------------------------------- /ports/xnnpack/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/xnnpack/vcpkg.json -------------------------------------------------------------------------------- /ports/xnvctrl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/xnvctrl/CMakeLists.txt -------------------------------------------------------------------------------- /ports/xnvctrl/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/xnvctrl/portfile.cmake -------------------------------------------------------------------------------- /ports/xnvctrl/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/xnvctrl/vcpkg.json -------------------------------------------------------------------------------- /ports/zenny-atomic/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/zenny-atomic/CMakeLists.txt -------------------------------------------------------------------------------- /ports/zenny-atomic/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/zenny-atomic/portfile.cmake -------------------------------------------------------------------------------- /ports/zenny-atomic/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/zenny-atomic/vcpkg.json -------------------------------------------------------------------------------- /ports/zlib-ng/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/zlib-ng/portfile.cmake -------------------------------------------------------------------------------- /ports/zlib-ng/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/zlib-ng/vcpkg.json -------------------------------------------------------------------------------- /ports/zlib/portfile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/zlib/portfile.cmake -------------------------------------------------------------------------------- /ports/zlib/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/ports/zlib/vcpkg.json -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/FindQtANGLE.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/scripts/FindQtANGLE.cmake -------------------------------------------------------------------------------- /scripts/gh-cleanup-cache.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/scripts/gh-cleanup-cache.ps1 -------------------------------------------------------------------------------- /scripts/gh-cleanup-runs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/scripts/gh-cleanup-runs.ps1 -------------------------------------------------------------------------------- /scripts/headver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/scripts/headver.ps1 -------------------------------------------------------------------------------- /scripts/install-cuda.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/scripts/install-cuda.ps1 -------------------------------------------------------------------------------- /scripts/install-cudnn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/scripts/install-cudnn.ps1 -------------------------------------------------------------------------------- /scripts/install-tensorrt.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/scripts/install-tensorrt.ps1 -------------------------------------------------------------------------------- /scripts/make-configuration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/scripts/make-configuration.ps1 -------------------------------------------------------------------------------- /scripts/registry-add-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/scripts/registry-add-version.ps1 -------------------------------------------------------------------------------- /scripts/registry-format.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/scripts/registry-format.ps1 -------------------------------------------------------------------------------- /scripts/template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/scripts/template.json -------------------------------------------------------------------------------- /scripts/update-portfile-sha512.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/scripts/update-portfile-sha512.ps1 -------------------------------------------------------------------------------- /test/packages-apt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/test/packages-apt.txt -------------------------------------------------------------------------------- /test/packages-homebrew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/test/packages-homebrew.txt -------------------------------------------------------------------------------- /test/self-hosted.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/test/self-hosted.json -------------------------------------------------------------------------------- /test/test-emsdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/test/test-emsdk.json -------------------------------------------------------------------------------- /test/vcpkg-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/test/vcpkg-configuration.json -------------------------------------------------------------------------------- /test/vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/test/vcpkg.json -------------------------------------------------------------------------------- /triplets/arm64-android.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/triplets/arm64-android.cmake -------------------------------------------------------------------------------- /triplets/arm64-ios-simulator.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/triplets/arm64-ios-simulator.cmake -------------------------------------------------------------------------------- /triplets/x64-android.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/triplets/x64-android.cmake -------------------------------------------------------------------------------- /triplets/x64-ios-simulator.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/triplets/x64-ios-simulator.cmake -------------------------------------------------------------------------------- /triplets/x64-linux.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/triplets/x64-linux.cmake -------------------------------------------------------------------------------- /triplets/x64-windows.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/triplets/x64-windows.cmake -------------------------------------------------------------------------------- /versions/a-/abseil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/a-/abseil.json -------------------------------------------------------------------------------- /versions/a-/apple-crypto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/a-/apple-crypto.json -------------------------------------------------------------------------------- /versions/a-/apple-nio-ssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/a-/apple-nio-ssl.json -------------------------------------------------------------------------------- /versions/a-/asmjit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/a-/asmjit.json -------------------------------------------------------------------------------- /versions/b-/basis-universal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/b-/basis-universal.json -------------------------------------------------------------------------------- /versions/baseline.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/baseline.json -------------------------------------------------------------------------------- /versions/c-/coreml-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/c-/coreml-tools.json -------------------------------------------------------------------------------- /versions/c-/cpuinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/c-/cpuinfo.json -------------------------------------------------------------------------------- /versions/c-/cudnn-frontend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/c-/cudnn-frontend.json -------------------------------------------------------------------------------- /versions/c-/cudnn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/c-/cudnn.json -------------------------------------------------------------------------------- /versions/d-/d3d12-transition-layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/d-/d3d12-transition-layer.json -------------------------------------------------------------------------------- /versions/d-/directml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/d-/directml.json -------------------------------------------------------------------------------- /versions/d-/dlpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/d-/dlpack.json -------------------------------------------------------------------------------- /versions/e-/eigen3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/e-/eigen3.json -------------------------------------------------------------------------------- /versions/e-/etcpak.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/e-/etcpak.json -------------------------------------------------------------------------------- /versions/f-/farmhash.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/f-/farmhash.json -------------------------------------------------------------------------------- /versions/f-/fbgemm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/f-/fbgemm.json -------------------------------------------------------------------------------- /versions/f-/fft2d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/f-/fft2d.json -------------------------------------------------------------------------------- /versions/f-/fp16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/f-/fp16.json -------------------------------------------------------------------------------- /versions/g-/gemmlowp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/g-/gemmlowp.json -------------------------------------------------------------------------------- /versions/g-/glslang.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/g-/glslang.json -------------------------------------------------------------------------------- /versions/g-/godot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/g-/godot.json -------------------------------------------------------------------------------- /versions/g-/google-filament.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/g-/google-filament.json -------------------------------------------------------------------------------- /versions/g-/google-jni-bind.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/g-/google-jni-bind.json -------------------------------------------------------------------------------- /versions/g-/google-pthreadpool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/g-/google-pthreadpool.json -------------------------------------------------------------------------------- /versions/l-/libdispatch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/l-/libdispatch.json -------------------------------------------------------------------------------- /versions/l-/libkineto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/l-/libkineto.json -------------------------------------------------------------------------------- /versions/l-/liblzma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/l-/liblzma.json -------------------------------------------------------------------------------- /versions/l-/llama-cpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/l-/llama-cpp.json -------------------------------------------------------------------------------- /versions/m-/magma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/m-/magma.json -------------------------------------------------------------------------------- /versions/m-/metal-cpp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/m-/metal-cpp.json -------------------------------------------------------------------------------- /versions/m-/miniaudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/m-/miniaudio.json -------------------------------------------------------------------------------- /versions/m-/minja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/m-/minja.json -------------------------------------------------------------------------------- /versions/m-/ml-dtypes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/m-/ml-dtypes.json -------------------------------------------------------------------------------- /versions/n-/neon2sse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/n-/neon2sse.json -------------------------------------------------------------------------------- /versions/n-/nsync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/n-/nsync.json -------------------------------------------------------------------------------- /versions/n-/nvidia-cnmem.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/n-/nvidia-cnmem.json -------------------------------------------------------------------------------- /versions/n-/nvidia-cudnn-frontend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/n-/nvidia-cudnn-frontend.json -------------------------------------------------------------------------------- /versions/n-/nvidia-cutlass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/n-/nvidia-cutlass.json -------------------------------------------------------------------------------- /versions/n-/nvidia-nvbench.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/n-/nvidia-nvbench.json -------------------------------------------------------------------------------- /versions/n-/nvidia-tools-extension-sdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/n-/nvidia-tools-extension-sdk.json -------------------------------------------------------------------------------- /versions/n-/nvidia-triton-client.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/n-/nvidia-triton-client.json -------------------------------------------------------------------------------- /versions/n-/nvidia-triton-common.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/n-/nvidia-triton-common.json -------------------------------------------------------------------------------- /versions/n-/nvidia-triton-core.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/n-/nvidia-triton-core.json -------------------------------------------------------------------------------- /versions/n-/nvtx3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/n-/nvtx3.json -------------------------------------------------------------------------------- /versions/o-/onnx-optimizer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/o-/onnx-optimizer.json -------------------------------------------------------------------------------- /versions/o-/onnx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/o-/onnx.json -------------------------------------------------------------------------------- /versions/o-/onnxruntime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/o-/onnxruntime.json -------------------------------------------------------------------------------- /versions/o-/opencl-headers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/o-/opencl-headers.json -------------------------------------------------------------------------------- /versions/o-/opencl-on-dx12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/o-/opencl-on-dx12.json -------------------------------------------------------------------------------- /versions/o-/opencl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/o-/opencl.json -------------------------------------------------------------------------------- /versions/o-/openjdk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/o-/openjdk.json -------------------------------------------------------------------------------- /versions/o-/openssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/o-/openssl.json -------------------------------------------------------------------------------- /versions/o-/openssl1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/o-/openssl1.json -------------------------------------------------------------------------------- /versions/o-/openssl3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/o-/openssl3.json -------------------------------------------------------------------------------- /versions/p-/psimd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/p-/psimd.json -------------------------------------------------------------------------------- /versions/p-/pthreadpool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/p-/pthreadpool.json -------------------------------------------------------------------------------- /versions/r-/ruy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/r-/ruy.json -------------------------------------------------------------------------------- /versions/s-/smol-v.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/s-/smol-v.json -------------------------------------------------------------------------------- /versions/s-/spine-runtimes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/s-/spine-runtimes.json -------------------------------------------------------------------------------- /versions/s-/sse2neon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/s-/sse2neon.json -------------------------------------------------------------------------------- /versions/s-/system-qt5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/s-/system-qt5.json -------------------------------------------------------------------------------- /versions/s-/system-qt6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/s-/system-qt6.json -------------------------------------------------------------------------------- /versions/t-/tensorflow-lite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/t-/tensorflow-lite.json -------------------------------------------------------------------------------- /versions/t-/tensorpipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/t-/tensorpipe.json -------------------------------------------------------------------------------- /versions/w-/winpixeventruntime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/w-/winpixeventruntime.json -------------------------------------------------------------------------------- /versions/x-/xatlas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/x-/xatlas.json -------------------------------------------------------------------------------- /versions/x-/xnnpack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/x-/xnnpack.json -------------------------------------------------------------------------------- /versions/x-/xnvctrl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/x-/xnvctrl.json -------------------------------------------------------------------------------- /versions/z-/zenny-atomic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/z-/zenny-atomic.json -------------------------------------------------------------------------------- /versions/z-/zlib-ng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/z-/zlib-ng.json -------------------------------------------------------------------------------- /versions/z-/zlib.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/luncliff/vcpkg-registry/HEAD/versions/z-/zlib.json --------------------------------------------------------------------------------