Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/audio/src/audio/CMakeLists.txt @ 388

Last change on this file since 388 was 388, checked in by nicolape, 17 years ago

Added cmake find files for my libs, added some test bg sounds (from x3, to be replaced later)

File size: 291 bytes
Line 
1PROJECT(Orxonox)
2
3SET(SRC_FILES
4        AudioManager.cc
5        AudioBuffer.cc
6        AudioSource.cc
7)
8SET(INC_FILES
9        AudioManager.h
10        AudioBuffer.h
11        AudioSource.h
12)
13
14
15ADD_LIBRARY(audio ${SRC_FILES} ${INC_FILES})
16
17TARGET_LINK_LIBRARIES(audio ${OPENAL_LIBRARY} ${ALUT_LIBRARY} ${OGGVORBIS_LIBRARY})
18
19
Note: See TracBrowser for help on using the repository browser.