How to disable GLM included with Vulkan SDK without reinstalling Vulkan

I installed the Vulkan SDK with the GLM headers included, but now I want to switch to my own custom GLM version.
Is there a way to disable or override the GLM that came with the Vulkan SDK without reinstalling it?

There is no need to disable the SDK glm version. Just download the one you want to use and point your build scripts or compiler at it. If you use something like CMake you can easily download (and use) your own version via fetch_content or use something like vcpkg as an alternative.

Yes, I’m using CMake with

include_directories("${VULKAN_SDK_ROOT}/macOS/include")

This folder contains a glm directory for the headers. Now I need to use a custom GLM. If I include it without disabling Vulkan’s GLM, then two versions of GLM will be present and searched by CMake.