Changeset 409
- Timestamp:
- Dec 5, 2007, 5:22:27 PM (17 years ago)
- Location:
- code/branches/FICN
- Files:
-
- 4 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/cmake/FindALUT.cmake
r389 r409 82 82 IF(ALUT_LIBRARY) 83 83 SET(ALUT_FOUND "YES") 84 MESSAGE(STATUS "FreeAlut was found . Libdir ${ALUT_LIBRARY} Includedir ${ALUT_INCLUDE_DIR}")84 MESSAGE(STATUS "FreeAlut was found") 85 85 ENDIF(ALUT_LIBRARY) 86 86 -
code/branches/FICN/cmake/FindOggVorbis.cmake
r406 r409 85 85 IF(OGG_LIBRARY) 86 86 SET(OGG_FOUND "YES") 87 MESSAGE(STATUS "Ogg was found. Libdir ${OGG_LIBRARY} Includedir ${OGG_INCLUDE_DIR}")87 MESSAGE(STATUS "Ogg was found.") 88 88 ENDIF(OGG_LIBRARY) 89 89 … … 91 91 IF(VORBIS_LIBRARY) 92 92 SET(VORBIS_FOUND "YES") 93 MESSAGE(STATUS "Vorbis was found. Libdir ${VORBIS_LIBRARY} Includedir ${VORBIS_INCLUDE_DIR}")93 MESSAGE(STATUS "Vorbis was found.") 94 94 ENDIF(VORBIS_LIBRARY) 95 95 -
code/branches/FICN/cmake/FindOpenAL.cmake
r389 r409 83 83 IF(OPENAL_LIBRARY) 84 84 SET(OPENAL_FOUND "YES") 85 MESSAGE(STATUS "OpenAL was found. Libdir ${OPENAL_LIBRARY} Includedir ${OPENAL_INCLUDE_DIR}")85 MESSAGE(STATUS "OpenAL was found.") 86 86 ENDIF(OPENAL_LIBRARY) 87 87 -
code/branches/FICN/src/audio/AudioBuffer.h
r389 r409 2 2 #define AUDIOBUFFER_H_ 3 3 4 #include <iostream> 5 #include <string> 6 #include <vector> 7 8 #include <AL/al.h> 9 #include <AL/alc.h> 10 #include <AL/alut.h> 4 #include "AudioIncludes.h" 11 5 12 6 namespace audio -
code/branches/FICN/src/audio/AudioManager.h
r389 r409 2 2 #define AUDIOMANAGER_H_ 3 3 4 #include <iostream> 5 #include <string> 6 #include <vector> 7 8 #include <AL/al.h> 9 #include <AL/alc.h> 10 #include <AL/alut.h> 4 #include "AudioIncludes.h" 11 5 12 6 #include "AudioBuffer.h" -
code/branches/FICN/src/audio/AudioSource.h
r389 r409 2 2 #define AUDIOSOURCE_H_ 3 3 4 #include <iostream> 5 #include <string> 6 #include <vector> 7 8 #include <AL/al.h> 9 #include <AL/alc.h> 10 #include <AL/alut.h> 4 #include "AudioIncludes.h" 11 5 12 6 namespace audio -
code/branches/FICN/src/audio/CMakeLists.txt
r404 r409 6 6 AudioBuffer.cc 7 7 AudioSource.cc 8 AudioStream.cc 8 9 ) 9 10 SET(INC_FILES … … 11 12 AudioBuffer.h 12 13 AudioSource.h 14 AudioStream.h 13 15 ) 14 16
Note: See TracChangeset
for help on using the changeset viewer.