Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

Last change on this file since 349 was 349, checked in by nicolape, 16 years ago

Added AudioManager, AudioBuffer and AudioSource Class definitions

File size: 277 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 alut)
18TARGET_LINK_LIBRARIES(audio openal)
19
20
Note: See TracBrowser for help on using the repository browser.