Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/audio/CMakeLists.txt @ 1082

Last change on this file since 1082 was 1070, checked in by rgrieder, 16 years ago
  • moved "—no-undefined" linker flag to root CMLs
  • removed library directories for our own libs from root CMLs (might not work)
  • removed warning in Hud.cc (float instead of integer)
File size: 386 bytes
RevLine 
[768]1SET ( AUDIO_SRC_FILES
[665]2  AudioManager.cc
3  AudioBuffer.cc
4  AudioSource.cc
5  AudioStream.cc
[458]6)
7
[768]8IF (WIN32)
[771]9  ADD_LIBRARY( audio ${AUDIO_SRC_FILES} )
[768]10ELSE (WIN32)
[1070]11  ADD_LIBRARY( audio SHARED ${AUDIO_SRC_FILES} )
[768]12ENDIF (WIN32)
[486]13
[768]14TARGET_LINK_LIBRARIES( audio
[728]15  ${OPENAL_LIBRARY}
16  ${ALUT_LIBRARY}
17  ${VORBISFILE_LIBRARY}
18  ${VORBIS_LIBRARY}
19  ${OGG_LIBRARY}
[768]20  core
[728]21)
[458]22
23
Note: See TracBrowser for help on using the repository browser.