mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 11:45:36 +02:00
Merge pull request #3272 from birarda/cf-fix
include CoreFoundation for defaultAudioDeviceForMode
This commit is contained in:
commit
26c0345d1d
1 changed files with 2 additions and 1 deletions
|
@ -172,10 +172,11 @@ add_definitions(-DQT_NO_BEARERMANAGEMENT)
|
|||
if (APPLE)
|
||||
# link in required OS X frameworks and include the right GL headers
|
||||
find_library(CoreAudio CoreAudio)
|
||||
find_library(CoreFoundation CoreFoundation)
|
||||
find_library(GLUT GLUT)
|
||||
find_library(OpenGL OpenGL)
|
||||
|
||||
target_link_libraries(${TARGET_NAME} ${CoreAudio} ${GLUT} ${OpenGL})
|
||||
target_link_libraries(${TARGET_NAME} ${CoreAudio} ${CoreFoundation} ${GLUT} ${OpenGL})
|
||||
|
||||
# install command for OS X bundle
|
||||
INSTALL(TARGETS ${TARGET_NAME}
|
||||
|
|
Loading…
Reference in a new issue