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, 17 years ago

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

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