From 04d4f735851833e26f65d98bfab1bca80476848d Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Oct 2023 13:59:09 +1100 Subject: [PATCH] Cleanup: quiet unused variable warning for CMake --- extern/vulkan_memory_allocator/CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/extern/vulkan_memory_allocator/CMakeLists.txt b/extern/vulkan_memory_allocator/CMakeLists.txt index b343a99173b..725abc3fa2d 100644 --- a/extern/vulkan_memory_allocator/CMakeLists.txt +++ b/extern/vulkan_memory_allocator/CMakeLists.txt @@ -17,6 +17,9 @@ set(SRC vk_mem_alloc.h ) +set(LIB +) + blender_add_lib(extern_vulkan_memory_allocator "${SRC}" "${INC}" "${INC_SYS}" "${LIB}") if(CMAKE_COMPILER_IS_GNUCC OR CMAKE_C_COMPILER_ID MATCHES "Clang")