Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/audio/CMakeLists.txt @ 470

Last change on this file since 470 was 458, checked in by nicolasc, 18 years ago
  • removed setupCEGUI as it is not used nor does it work
  • some minor changes in audio
File size: 429 bytes
RevLine 
[327]1PROJECT(Orxonox)
2
[458]3SET(SRC_FILES
[404]4        AudioIncludes.h
[349]5        AudioManager.cc
6        AudioBuffer.cc
7        AudioSource.cc
[419]8        AudioStream.cc
[458]9)
10SET(INC_FILES
[349]11        AudioManager.h
12        AudioBuffer.h
13        AudioSource.h
[419]14        AudioStream.h
[458]15)
16
17INCLUDE_DIRECTORIES(..)
18
19ADD_LIBRARY(audio ${SRC_FILES} ${INC_FILES})
20
21TARGET_LINK_LIBRARIES(audio ${OPENAL_LIBRARY} ${ALUT_LIBRARY} ${OGG_LIBRARY} ${VORBIS_LIBRARY} ${VORBISFILE_LIBRARY} ${VORBISENC_LIBRARY})
22
23
Note: See TracBrowser for help on using the repository browser.