Changeset 377 for code/branches/audio/cmake
- Timestamp:
- Dec 4, 2007, 3:11:29 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/audio/cmake/FindOpenAL.cmake
r345 r377 9 9 # used in building OpenAL. 10 10 # 11 11 12 # Created by Eric Wing. This was influenced by the FindSDL.cmake module. 12 13 # On OSX, this will prefer the Framework version (if found) over others. … … 16 17 # But for now, we have to look around. 17 18 # Other (Unix) systems should be able to utilize the non-framework paths. 18 FIND_PATH(OPENAL_INCLUDE_DIR al.h19 FIND_PATH(OPENAL_INCLUDE_DIR AL/al.h 19 20 $ENV{OPENALDIR}/include 20 21 ~/Library/Frameworks/OpenAL.framework/Headers 21 22 /Library/Frameworks/OpenAL.framework/Headers 22 23 /System/Library/Frameworks/OpenAL.framework/Headers # Tiger 23 /usr/pack/openal-0.0.8-cl/include /AL# Tardis specific hack24 /usr/local/include/ AL24 /usr/pack/openal-0.0.8-cl/include # Tardis specific hack 25 /usr/local/include/ 25 26 /usr/local/include/OpenAL 26 27 /usr/local/include 27 /usr/include/ AL28 /usr/include/ 28 29 /usr/include/OpenAL 29 30 /usr/include 30 /sw/include /AL# Fink31 /sw/include # Fink 31 32 /sw/include/OpenAL 32 33 /sw/include 33 /opt/local/include /AL# DarwinPorts34 /opt/local/include # DarwinPorts 34 35 /opt/local/include/OpenAL 35 36 /opt/local/include 36 /opt/csw/include /AL# Blastwave37 /opt/csw/include # Blastwave 37 38 /opt/csw/include/OpenAL 38 39 /opt/csw/include 39 /opt/include /AL40 /opt/include 40 41 /opt/include/OpenAL 41 42 /opt/include … … 69 70 $ENV{OPENALDIR}/lib 70 71 $ENV{OPENALDIR}/libs 72 /usr/pack/openal-0.0.8-cl/i686-debian-linux3.1/lib 71 73 /usr/local/lib 72 74 /usr/lib … … 81 83 IF(OPENAL_LIBRARY) 82 84 SET(OPENAL_FOUND "YES") 85 MESSAGE(STATUS "OpenAL was found. Libdir ${OPENAL_LIBRARY} Includedir ${OPENAL_INCLUDE_DIR}") 83 86 ENDIF(OPENAL_LIBRARY) 84 87
Note: See TracChangeset
for help on using the changeset viewer.