[macOS] Check Vulkan SDK version when looking for MoltenVK libs.

(cherry picked from commit 70e328385c)
This commit is contained in:
bruvzg 2024-02-04 23:09:52 +02:00 committed by Rémi Verschelde
parent 0d75fc564b
commit 8c54f7b6cd
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -66,13 +66,14 @@ def get_mvk_sdk_path():
if not os.path.exists(dirname):
return ""
ver_min = ver_parse("1.3.231.0")
ver_num = ver_parse("0.0.0.0")
files = os.listdir(dirname)
lib_name_out = dirname
for file in files:
if os.path.isdir(os.path.join(dirname, file)):
ver_comp = ver_parse(file)
if ver_comp > ver_num:
if ver_comp > ver_num and ver_comp >= ver_min:
# Try new SDK location.
lib_name = os.path.join(
os.path.join(dirname, file), "macOS/lib/MoltenVK.xcframework/macos-arm64_x86_64/"