You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is largely an unfortunate packaging issue on Windows where the CMake infrastructure for Vulkan expects to find the Vulkan headers (which we don't need), as well as the Vulkan loader library (which is needed for linking), all of which are packaged up in the SDK. So installing the SDK is the easiest solution, but not ideal and creates another dependency that we don't need.
Unfortunately, this may mean adding a custom CMake FindVulkan method that simply locates the path to the loader library to configure a proper environment for AOT tests and apps.
The text was updated successfully, but these errors were encountered:
This is largely an unfortunate packaging issue on Windows where the CMake infrastructure for Vulkan expects to find the Vulkan headers (which we don't need), as well as the Vulkan loader library (which is needed for linking), all of which are packaged up in the SDK. So installing the SDK is the easiest solution, but not ideal and creates another dependency that we don't need.
Unfortunately, this may mean adding a custom CMake
FindVulkan
method that simply locates the path to the loader library to configure a proper environment for AOT tests and apps.The text was updated successfully, but these errors were encountered: