You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CMakeLists.txt
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -205,7 +205,7 @@ option(WITH_PYTHON_SAFETY "Enable internal API error checking to track invalid d
205
205
mark_as_advanced(WITH_PYTHON_SAFETY)
206
206
option(WITH_PYTHON_MODULE"Enable building as a python module which runs without a user interface, like running regular blender in background mode (experimental, only enable for development), installs to PYTHON_SITE_PACKAGES (or CMAKE_INSTALL_PREFIX if WITH_INSTALL_PORTABLE is enabled)."OFF)
207
207
if(APPLE)
208
-
option(WITH_PYTHON_FRAMEWORK"Enable building using the Python available in the framework (OSX only)"OFF)
208
+
option(WITH_PYTHON_FRAMEWORK"Enable building using the Python available in the framework (OSX only)"ON)
209
209
endif()
210
210
211
211
option(WITH_BUILDINFO"Include extra build details (only disable for development & faster builds)"${_init_BUILDINFO})
@@ -378,9 +378,9 @@ if(UNIX AND NOT APPLE)
378
378
endif()
379
379
endif()
380
380
381
-
option(WITH_PYTHON_INSTALL"Copy system python into the blender install folder"ON)
381
+
option(WITH_PYTHON_INSTALL"Copy system python into the blender install folder"OFF)
382
382
if(WITH_PYTHON_INSTALL)
383
-
option(WITH_PYTHON_INSTALL_NUMPY"Copy system numpy into the blender install folder"ON)
383
+
option(WITH_PYTHON_INSTALL_NUMPY"Copy system numpy into the blender install folder"OFF)
384
384
set(PYTHON_NUMPY_PATH""CACHEPATH"Path to python site-packages or dist-packages containing 'numpy' module")
385
385
mark_as_advanced(PYTHON_NUMPY_PATH)
386
386
@@ -856,13 +856,13 @@ set(CC_REMOVE_STRICT_FLAGS)
856
856
857
857
# libraries to link the binary with passed to target_link_libraries()
0 commit comments