Browse Source

Rename mkv_list to mvk_list (MoltenVK path list).

Ron B. Yeh 2 years ago
parent
commit
7e7ac1bb87
1 changed files with 4 additions and 4 deletions
  1. 4 4
      platform/macos/detect.py

+ 4 - 4
platform/macos/detect.py

@@ -242,17 +242,17 @@ def configure(env: "Environment"):
             env.Append(LINKFLAGS=["-lMoltenVK"])
             mvk_found = False
 
-            mkv_list = [get_mvk_sdk_path(), "/opt/homebrew/lib", "/usr/local/homebrew/lib", "/opt/local/lib"]
+            mvk_list = [get_mvk_sdk_path(), "/opt/homebrew/lib", "/usr/local/homebrew/lib", "/opt/local/lib"]
             if env["vulkan_sdk_path"] != "":
-                mkv_list.insert(0, os.path.expanduser(env["vulkan_sdk_path"]))
-                mkv_list.insert(
+                mvk_list.insert(0, os.path.expanduser(env["vulkan_sdk_path"]))
+                mvk_list.insert(
                     0,
                     os.path.join(
                         os.path.expanduser(env["vulkan_sdk_path"]), "MoltenVK/MoltenVK.xcframework/macos-arm64_x86_64/"
                     ),
                 )
 
-            for mvk_path in mkv_list:
+            for mvk_path in mvk_list:
                 if mvk_path and os.path.isfile(os.path.join(mvk_path, "libMoltenVK.a")):
                     mvk_found = True
                     print("MoltenVK found at: " + mvk_path)