mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 22:00:39 -06:00
cmake: Properly link against pthread on Linux using CMake's detection
This commit is contained in:
5
Externals/portaudio/CMakeLists.txt
vendored
5
Externals/portaudio/CMakeLists.txt
vendored
@ -316,8 +316,9 @@ ELSE()
|
||||
|
||||
ENDIF()
|
||||
|
||||
SET(PA_PKGCONFIG_LDFLAGS "${PA_PKGCONFIG_LDFLAGS} -lm -lpthread")
|
||||
SET(PA_LIBRARY_DEPENDENCIES ${PA_LIBRARY_DEPENDENCIES} m pthread)
|
||||
find_package(Threads)
|
||||
SET(PA_PKGCONFIG_LDFLAGS "${PA_PKGCONFIG_LDFLAGS} -lm")
|
||||
SET(PA_LIBRARY_DEPENDENCIES ${PA_LIBRARY_DEPENDENCIES} m Threads::Threads)
|
||||
|
||||
ENDIF()
|
||||
|
||||
|
Reference in New Issue
Block a user