Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

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

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

Fixed linker bug, audio support compiles,links and runs now correctly with system libs and includes!

File size: 270 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})
18
19
Note: See TracBrowser for help on using the repository browser.