Merge remote-tracking branch 'origin/blender-v4.4-release'

This commit is contained in:
Anthony Roberts
2025-02-13 16:46:34 +00:00
2 changed files with 8 additions and 1 deletions

View File

@@ -58,6 +58,13 @@ else()
endif()
endif()
set(WINDOWS_ARM64_MIN_VSCMD_VER 17.12.3)
if(CMAKE_SYSTEM_PROCESSOR STREQUAL "ARM64")
if($ENV{VSCMD_VER} VERSION_LESS WINDOWS_ARM64_MIN_VSCMD_VER)
message(FATAL_ERROR "Windows ARM64 requires VS2022 version ${WINDOWS_ARM64_MIN_VSCMD_VER} or greater - please update your VS2022 install!")
endif()
endif()
if(WITH_BLENDER AND NOT WITH_PYTHON_MODULE)
set_property(DIRECTORY PROPERTY VS_STARTUP_PROJECT blender)
endif()