From 579e96c3564b0714c00cc1998f01cdd5614642d6 Mon Sep 17 00:00:00 2001 From: "Lanz, Jon (NBCUniversal)" Date: Fri, 1 May 2026 15:22:20 -0700 Subject: [PATCH] [MOONRAY-6032] Find Vulkan for usd-25.5+ (#462) * Find Vulkan for usd-25.5+ Signed-off-by: Jon Lanz --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 2f61a2a..b5cc674 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,6 +38,9 @@ endif() # * https://github.com/PixarAnimationStudios/OpenUSD/issues/3310 # * https://github.com/PixarAnimationStudios/OpenUSD/pull/3205 find_package(OpenGL REQUIRED) +if(PXR_VERSION VERSION_GREATER_EQUAL 2505) + find_package(Vulkan REQUIRED) +endif() find_package(JPEG REQUIRED) find_package(OpenImageIO REQUIRED)