Files
ik_llama.cpp/github-data/pull_requests/570 - Remove duplicate_misplaced cmake find_package for Vulkan.md
2025-07-23 13:31:53 +02:00

799 B

🔀 #570 - Remove duplicate/misplaced cmake find_package for Vulkan

Author Nexesenex
State Closed
Created 2025-07-02
Updated 2025-07-02

Description

This line find_package(Vulkan COMPONENTS glslc REQUIRED) prevented to build anything on MSVS 2022 if the package was not present on the system, this even if Vulkan was not selected.

It's already present in the Vulkan conditionality.

if (GGML_VULKAN)
find_package(Vulkan COMPONENTS glslc REQUIRED)