Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN_test/src/audio/CMakeLists.txt @ 763

Last change on this file since 763 was 763, checked in by rgrieder, 16 years ago
  • blubb #4
  • should link now correctly, let's see if it runs too..
File size: 376 bytes
Line 
1SET (SRC_FILES
2  AudioIncludes.h
3  AudioManager.cc
4  AudioBuffer.cc
5  AudioSource.cc
6  AudioStream.cc
7)
8
9ADD_LIBRARY( audio SHARED ${SRC_FILES})
10SET_TARGET_PROPERTIES( audio PROPERTIES LINK_FLAGS "--no-undefined" )
11
12TARGET_LINK_LIBRARIES( audio
13  ${OPENAL_LIBRARY}
14  ${ALUT_LIBRARY}
15  ${VORBISFILE_LIBRARY}
16  ${VORBIS_LIBRARY}
17  ${OGG_LIBRARY}
18  core
19)
20
21
Note: See TracBrowser for help on using the repository browser.