Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 458 was 458, checked in by nicolasc, 16 years ago
  • removed setupCEGUI as it is not used nor does it work
  • some minor changes in audio
File size: 429 bytes
Line 
1PROJECT(Orxonox)
2
3SET(SRC_FILES
4        AudioIncludes.h
5        AudioManager.cc
6        AudioBuffer.cc
7        AudioSource.cc
8        AudioStream.cc
9)
10SET(INC_FILES
11        AudioManager.h
12        AudioBuffer.h
13        AudioSource.h
14        AudioStream.h
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.