Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2020-02-16 20:38:33 +0300
committerRay Molenkamp <github@lazydodo.com>2020-02-16 20:38:33 +0300
commit70ff8f4a973109b7b2c6a67e6989978bf6553118 (patch)
tree660074b99c0d5fcc0811770e7ba6fddb62e5d1d5 /build_files/cmake/config/bpy_module.cmake
parentf6d5a9551380581167a907c5b56a6401edce601b (diff)
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.
Diffstat (limited to 'build_files/cmake/config/bpy_module.cmake')
-rw-r--r--build_files/cmake/config/bpy_module.cmake4
1 files changed, 4 insertions, 0 deletions
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()