1 parent a2a252f commit 4eaeafcCopy full SHA for 4eaeafc
2 files changed
CMakeLists.txt
@@ -415,3 +415,10 @@ target_link_libraries(Cyph3D PRIVATE spdlog::spdlog)
415
416
find_package(nfd CONFIG REQUIRED)
417
target_link_libraries(Cyph3D PRIVATE nfd::nfd)
418
+
419
+# ---- Dependency: KhronosGroup/Vulkan-Loader ----
420
421
+if (CMAKE_SYSTEM_NAME STREQUAL "Darwin")
422
+ find_package(VulkanLoader CONFIG REQUIRED)
423
+ add_dependencies(Cyph3D Vulkan::Loader)
424
+endif ()
vcpkg.json
@@ -30,6 +30,10 @@
30
{
31
"name": "spdlog",
32
"default-features": false
33
+ },
34
+ {
35
+ "name": "vulkan-loader",
36
+ "platform": "osx"
37
}
38
]
39
0 commit comments