Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 409


Ignore:
Timestamp:
Dec 5, 2007, 5:22:27 PM (16 years ago)
Author:
nicolape
Message:

Simplified cmake audio lib messages

Location:
code/branches/FICN
Files:
4 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/cmake/FindALUT.cmake

    r389 r409  
    8282IF(ALUT_LIBRARY)
    8383  SET(ALUT_FOUND "YES")
    84         MESSAGE(STATUS "FreeAlut was found. Libdir ${ALUT_LIBRARY} Includedir ${ALUT_INCLUDE_DIR}")
     84        MESSAGE(STATUS "FreeAlut was found")
    8585ENDIF(ALUT_LIBRARY)
    8686
  • code/branches/FICN/cmake/FindOggVorbis.cmake

    r406 r409  
    8585IF(OGG_LIBRARY)
    8686  SET(OGG_FOUND "YES")
    87         MESSAGE(STATUS "Ogg was found. Libdir ${OGG_LIBRARY} Includedir ${OGG_INCLUDE_DIR}")
     87        MESSAGE(STATUS "Ogg was found.")
    8888ENDIF(OGG_LIBRARY)
    8989
     
    9191IF(VORBIS_LIBRARY)
    9292  SET(VORBIS_FOUND "YES")
    93         MESSAGE(STATUS "Vorbis was found. Libdir ${VORBIS_LIBRARY} Includedir ${VORBIS_INCLUDE_DIR}")
     93        MESSAGE(STATUS "Vorbis was found.")
    9494ENDIF(VORBIS_LIBRARY)
    9595
  • code/branches/FICN/cmake/FindOpenAL.cmake

    r389 r409  
    8383IF(OPENAL_LIBRARY)
    8484  SET(OPENAL_FOUND "YES")
    85         MESSAGE(STATUS "OpenAL was found. Libdir ${OPENAL_LIBRARY} Includedir ${OPENAL_INCLUDE_DIR}")
     85        MESSAGE(STATUS "OpenAL was found.")
    8686ENDIF(OPENAL_LIBRARY)
    8787
  • code/branches/FICN/src/audio/AudioBuffer.h

    r389 r409  
    22#define AUDIOBUFFER_H_
    33
    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"
    115
    126namespace audio
  • code/branches/FICN/src/audio/AudioManager.h

    r389 r409  
    22#define AUDIOMANAGER_H_
    33
    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"
    115
    126#include "AudioBuffer.h"
  • code/branches/FICN/src/audio/AudioSource.h

    r389 r409  
    22#define AUDIOSOURCE_H_
    33
    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"
    115
    126namespace audio
  • code/branches/FICN/src/audio/CMakeLists.txt

    r404 r409  
    66        AudioBuffer.cc
    77        AudioSource.cc
     8        AudioStream.cc
    89)
    910SET(INC_FILES
     
    1112        AudioBuffer.h
    1213        AudioSource.h
     14        AudioStream.h
    1315)
    1416
Note: See TracChangeset for help on using the changeset viewer.