From 70ff8f4a973109b7b2c6a67e6989978bf6553118 Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Sun, 16 Feb 2020 10:38:33 -0700 Subject: BPY/Windows: Do not bundle the CRT for a bpy build - Doesn't work - If it worked, having a different CRT than the rest of the process would not be a good thing. --- build_files/cmake/config/bpy_module.cmake | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'build_files/cmake/config') diff --git a/build_files/cmake/config/bpy_module.cmake b/build_files/cmake/config/bpy_module.cmake index 188315f58f2..18d19b32335 100644 --- a/build_files/cmake/config/bpy_module.cmake +++ b/build_files/cmake/config/bpy_module.cmake @@ -45,3 +45,7 @@ elseif(APPLE) # OpenMP causes linking error on build, disable. set(WITH_MEM_JEMALLOC OFF CACHE BOOL "" FORCE) endif() + +if(WIN32) + set(WITH_WINDOWS_BUNDLE_CRT OFF CACHE BOOL "" FORCE) +endif() -- cgit v1.2.3