Adjust OpenAL detection on Linux systems

This commit is contained in:
Berkus Decker 2017-12-18 01:37:23 +02:00 committed by Berkus Decker
parent b9d1cd2908
commit a67bd6e770
2 changed files with 10 additions and 4 deletions

View File

@ -27,9 +27,15 @@ set(CMAKE_CXX_EXTENSIONS OFF)
set(CMAKE_AUTOMOC ON)
set(CMAKE_INCLUDE_CURRENT_DIR ON)
# Needs OpenAL-SOFT
# Install via `brew install openal-soft` and configure with cmake call from README.md
find_package(OpenAL REQUIRED NO_MODULE)
if (LINUX)
find_package(OpenAL REQUIRED)
else(LINUX)
# Needs OpenAL-SOFT
# Install via `brew install openal-soft` and configure with cmake call from README.md
find_package(OpenAL REQUIRED NO_MODULE)
set(OPENAL_LIBRARY OpenAL::OpenAL)
endif(LINUX)
find_package(ZLIB REQUIRED)
find_package(FFmpeg REQUIRED)
find_package(Opus REQUIRED)

View File

@ -639,7 +639,7 @@ target_link_libraries(Telegram
Qt5::Network
Qt5::GuiPrivate
tgvoip
OpenAL::OpenAL
${OPENAL_LIBRARY}
${FFMPEG_LIBRARIES}
${ZLIB_LIBRARIES}
${SWRESAMPLE_LIBRARIES}