[Bf-blender-cvs] [70ff8f4a973] master: BPY/Windows: Do not bundle the CRT for a bpy build

Ray Molenkamp noreply at git.blender.org
Sun Feb 16 18:38:38 CET 2020


Commit: 70ff8f4a973109b7b2c6a67e6989978bf6553118
Author: Ray Molenkamp
Date:   Sun Feb 16 10:38:33 2020 -0700
Branches: master
https://developer.blender.org/rB70ff8f4a973109b7b2c6a67e6989978bf6553118

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.

===================================================================

M	build_files/cmake/config/bpy_module.cmake

===================================================================

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()



More information about the Bf-blender-cvs mailing list