diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 15aea2823..6cbd0d671 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -146,6 +146,9 @@ if( NOT NO_OPENAL ) mark_as_advanced(CLEAR OPENAL_LIBRARY) if( OPENAL_LIBRARY ) set( PROJECT_LIBRARIES ${OPENAL_LIBRARY} ${PROJECT_LIBRARIES} ) + if( APPLE ) + set( PROJECT_LIBRARIES ${PROJECT_LIBRARIES} "-framework CoreAudio -framework AudioUnit" ) + endif() else() set( NO_OPENAL ON ) endif()