cmake: Move AO detection to AudioCommon

This commit is contained in:
Florent Castelli
2017-02-05 05:08:30 +01:00
parent eb3c172b95
commit cbb7e4072a
3 changed files with 54 additions and 16 deletions

View File

@ -421,19 +421,6 @@ if (OPENGL_GL)
include_directories(${OPENGL_INCLUDE_DIR})
endif()
if(ENABLE_AO)
check_lib(AO ao ao QUIET)
if(AO_FOUND)
add_definitions(-DHAVE_AO=1)
message(STATUS "ao found, enabling ao sound backend")
else()
add_definitions(-DHAVE_AO=0)
message(STATUS "ao NOT found, disabling ao sound backend")
endif()
else()
message(STATUS "ao explicitly disabled, disabling ao sound backend")
endif()
if(ENABLE_BLUEZ)
check_lib(BLUEZ bluez bluez QUIET)
if(BLUEZ_FOUND)