Changeset 402 for code/branches/FICN/cmake
- Timestamp:
- Dec 5, 2007, 4:22:20 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/cmake/FindOggVorbis.cmake
r389 r402 1 1 2 SET(OGGVORBIS_LIBRARY_DIR "/usr/pack/oggvorbis-1.0-ds/i686-debian-linux3.0/lib")3 SET(OGGVORBIS_LIBRARY "${OGGVORBIS_LIBRARY_DIR}/libvorbisenc.so ${OGGVORBIS_LIBRARY_DIR}/libvorbisfile.so ${OGGVORBIS_LIBRARY_DIR}/libogg.so ${OGGVORBIS_LIBRARY_DIR}/libvorbis.so")4 SET(OGGVORBIS_INCLUDE_DIR "/usr/pack/oggvorbis-1.0-ds/i686-debian-linux3.0/include")2 #SET(OGGVORBIS_LIBRARY_DIR "/usr/pack/oggvorbis-1.0-ds/i686-debian-linux3.0/lib") 3 #SET(OGGVORBIS_LIBRARY "-L ${OGGVORBIS_LIBRARY_DIR} -lvorbisenc -lvorbisfile -logg -lvorbis ") 4 #SET(OGGVORBIS_INCLUDE_DIR "/usr/pack/oggvorbis-1.0-ds/i686-debian-linux3.0/include") 5 5 6 MESSAGE(STATUS "OggVorbis was found. Libdir ${OGGVORBIS_LIBRARY_DIR} Includedir ${OGGVORBIS_INCLUDE_DIR}") 6 # 7 # Includes 8 # 9 10 FIND_PATH(OGG_INCLUDE_DIR ogg/ogg.h 11 /usr/pack/oggvorbis-1.0-ds/i686-debian-linux3.0/include # Tardis specific hack 12 /usr/local/include 13 /usr/include 14 /sw/include 15 /opt/local/include 16 /opt/csw/include 17 /opt/csw/include 18 /opt/include 19 ) 20 21 FIND_PATH(VORBIS_INCLUDE_DIR vorbis/codec.h 22 /usr/pack/oggvorbis-1.0-ds/i686-debian-linux3.0/include # Tardis specific hack 23 /usr/local/include 24 /usr/include 25 /sw/include 26 /opt/local/include 27 /opt/csw/include 28 /opt/csw/include 29 /opt/include 30 ) 31 32 # 33 # Libs 34 # 35 36 FIND_LIBRARY(OGG_LIBRARY 37 NAMES ogg 38 PATHS 39 /usr/pack/openal-0.0.8-cl/i686-debian-linux3.1/lib 40 /usr/local/lib 41 /usr/lib 42 /sw/lib 43 /opt/local/lib 44 /opt/csw/lib 45 /opt/lib 46 ) 47 48 FIND_LIBRARY(VORBIS_LIBRARY 49 NAMES vorbis 50 PATHS 51 /usr/pack/openal-0.0.8-cl/i686-debian-linux3.1/lib 52 /usr/local/lib 53 /usr/lib 54 /sw/lib 55 /opt/local/lib 56 /opt/csw/lib 57 /opt/lib 58 ) 59 60 FIND_LIBRARY(VORBISENC_LIBRARY 61 NAMES vorbisenc 62 PATHS 63 /usr/pack/openal-0.0.8-cl/i686-debian-linux3.1/lib 64 /usr/local/lib 65 /usr/lib 66 /sw/lib 67 /opt/local/lib 68 /opt/csw/lib 69 /opt/lib 70 ) 71 72 FIND_LIBRARY(VORBISFILE_LIBRARY 73 NAMES vorbisfile 74 PATHS 75 /usr/pack/openal-0.0.8-cl/i686-debian-linux3.1/lib 76 /usr/local/lib 77 /usr/lib 78 /sw/lib 79 /opt/local/lib 80 /opt/csw/lib 81 /opt/lib 82 ) 83 84 SET(OGG_FOUND "NO") 85 IF(OGG_LIBRARY) 86 SET(OGG_FOUND "YES") 87 MESSAGE(STATUS "Ogg was found. Libdir ${OGG_LIBRARY} Includedir ${OGG_INCLUDE_DIR}") 88 ENDIF(OGG_LIBRARY) 89 90 SET(VORBIS_FOUND "NO") 91 IF(VORBIS_LIBRARY) 92 SET(VORBIS_FOUND "YES") 93 MESSAGE(STATUS "Vorbis was found. Libdir ${VORBIS_LIBRARY} Includedir ${VORBIS_INCLUDE_DIR}") 94 ENDIF(VORBIS_LIBRARY) 95
Note: See TracChangeset
for help on using the changeset viewer.