From 079a752a20a850ec94a03bdb6cc8d41284595c71 Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Fri, 22 Dec 2023 13:35:51 -0700 Subject: [PATCH] CMake: windows: disable vcpkg for blendthumb vcpkg was once more sticking its libraries where we do not want them. Hopefully this will be the last of it. --- source/blender/blendthumb/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/source/blender/blendthumb/CMakeLists.txt b/source/blender/blendthumb/CMakeLists.txt index 2d58668f6b2..e4120506407 100644 --- a/source/blender/blendthumb/CMakeLists.txt +++ b/source/blender/blendthumb/CMakeLists.txt @@ -39,6 +39,7 @@ if(WIN32) target_link_libraries(BlendThumb bf_blenlib dbghelp.lib Version.lib) set_target_properties(BlendThumb PROPERTIES LINK_FLAGS_DEBUG "/NODEFAULTLIB:msvcrt") + set_target_properties(BlendThumb PROPERTIES VS_GLOBAL_VcpkgEnabled "false") else() # -----------------------------------------------------------------------------