Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 761 was 761, checked in by rgrieder, 16 years ago
File size: 403 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#  ${VORBISENC_LIBRARY}
17#  ${VORBIS_LIBRARY}
18#  ${OGG_LIBRARY}
19  core
20)
21
22
Note: See TracBrowser for help on using the repository browser.