Update cmake for linux builds

This commit is contained in:
crackedmind 2017-12-18 07:53:24 +03:00 committed by Berkus Decker
parent c4fe2f86ea
commit e4358bef35
2 changed files with 2 additions and 1 deletions

View File

@ -43,6 +43,7 @@ if (LINUX)
find_package(OpenAL REQUIRED)
find_package(ALSA)
find_package(PulseAudio)
find_package(Qt5 COMPONENTS DBus)
else(LINUX)
# Needs OpenAL-SOFT
# Install via `brew install openal-soft` and configure with cmake call from README.md

View File

@ -693,7 +693,7 @@ if(WIN32)
endif()
if (LINUX)
target_link_libraries(Telegram ${ALSA_LIBRARIES} ${PULSEAUDIO_LIBRARIES})
target_link_libraries(Telegram Qt5::DBus dl ${ALSA_LIBRARIES} ${PULSEAUDIO_LIBRARIES})
endif()
set_target_properties(Telegram