mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-28 01:49:33 -06:00
Merge pull request #13600 from JoshuaVandaele/nixfix
CMake: Explicitely link udev if LIBUDEV_FOUND is set
This commit is contained in:
@ -656,6 +656,11 @@ PRIVATE
|
||||
ZLIB::ZLIB
|
||||
)
|
||||
|
||||
if(LIBUDEV_FOUND)
|
||||
target_include_directories(core PRIVATE ${LIBUDEV_INCLUDE_DIR})
|
||||
target_link_libraries(core PRIVATE ${LIBUDEV_LIBRARY})
|
||||
endif()
|
||||
|
||||
if (APPLE)
|
||||
target_link_libraries(core
|
||||
PRIVATE
|
||||
|
Reference in New Issue
Block a user