FindOpenAL.cmake 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. # Locate OpenAL
  2. # This module defines
  3. # OPENAL_LIBRARY
  4. # OPENAL_FOUND, if false, do not try to link to OpenAL
  5. # OPENAL_INCLUDE_DIR, where to find the headers
  6. #
  7. # $OPENALDIR is an environment variable that would
  8. # correspond to the ./configure --prefix=$OPENALDIR
  9. # used in building OpenAL.
  10. #
  11. # Created by Eric Wing. This was influenced by the FindSDL.cmake module.
  12. # This makes the presumption that you are include al.h like
  13. # #include "al.h"
  14. # and not
  15. # #include <AL/al.h>
  16. # The reason for this is that the latter is not entirely portable.
  17. # Windows/Creative Labs does not by default put their headers in AL/ and
  18. # OS X uses the convention <OpenAL/al.h>.
  19. #
  20. # For Windows, Creative Labs seems to have added a registry key for their
  21. # OpenAL 1.1 installer. I have added that key to the list of search paths,
  22. # however, the key looks like it could be a little fragile depending on
  23. # if they decide to change the 1.00.0000 number for bug fix releases.
  24. # Also, they seem to have laid down groundwork for multiple library platforms
  25. # which puts the library in an extra subdirectory. Currently there is only
  26. # Win32 and I have hardcoded that here. This may need to be adjusted as
  27. # platforms are introduced.
  28. # The OpenAL 1.0 installer doesn't seem to have a useful key I can use.
  29. # I do not know if the Nvidia OpenAL SDK has a registry key.
  30. #
  31. # For OS X, remember that OpenAL was added by Apple in 10.4 (Tiger).
  32. # To support the framework, I originally wrote special framework detection
  33. # code in this module which I have now removed with CMake's introduction
  34. # of native support for frameworks.
  35. # In addition, OpenAL is open source, and it is possible to compile on Panther.
  36. # Furthermore, due to bugs in the initial OpenAL release, and the
  37. # transition to OpenAL 1.1, it is common to need to override the built-in
  38. # framework.
  39. # Per my request, CMake should search for frameworks first in
  40. # the following order:
  41. # ~/Library/Frameworks/OpenAL.framework/Headers
  42. # /Library/Frameworks/OpenAL.framework/Headers
  43. # /System/Library/Frameworks/OpenAL.framework/Headers
  44. #
  45. # On OS X, this will prefer the Framework version (if found) over others.
  46. # People will have to manually change the cache values of
  47. # OPENAL_LIBRARY to override this selection or set the CMake environment
  48. # CMAKE_INCLUDE_PATH to modify the search paths.
  49. FIND_PATH(OPENAL_INCLUDE_DIR al.h
  50. PATHS
  51. $ENV{OPENALDIR}
  52. NO_DEFAULT_PATH
  53. PATH_SUFFIXES include/AL include/OpenAL include
  54. )
  55. FIND_PATH(OPENAL_INCLUDE_DIR al.h
  56. PATHS
  57. ~/Library/Frameworks
  58. /Library/Frameworks
  59. /usr/local
  60. /usr
  61. /sw # Fink
  62. /opt/local # DarwinPorts
  63. /opt/csw # Blastwave
  64. /opt
  65. [HKEY_LOCAL_MACHINE\\SOFTWARE\\Creative\ Labs\\OpenAL\ 1.1\ Software\ Development\ Kit\\1.00.0000;InstallDir]
  66. PATH_SUFFIXES include/AL include/OpenAL include
  67. )
  68. FIND_LIBRARY(OPENAL_LIBRARY
  69. NAMES OpenAL al openal OpenAL32
  70. PATHS
  71. $ENV{OPENALDIR}
  72. NO_DEFAULT_PATH
  73. PATH_SUFFIXES lib64 lib libs64 libs libs/Win32 libs/Win64
  74. )
  75. FIND_LIBRARY(OPENAL_LIBRARY
  76. NAMES OpenAL al openal OpenAL32
  77. PATHS
  78. ~/Library/Frameworks
  79. /Library/Frameworks
  80. /usr/local
  81. /usr
  82. /sw
  83. /opt/local
  84. /opt/csw
  85. /opt
  86. [HKEY_LOCAL_MACHINE\\SOFTWARE\\Creative\ Labs\\OpenAL\ 1.1\ Software\ Development\ Kit\\1.00.0000;InstallDir]
  87. PATH_SUFFIXES lib64 lib libs64 libs libs/Win32 libs/Win64
  88. )
  89. SET(OPENAL_FOUND "NO")
  90. IF(OPENAL_LIBRARY AND OPENAL_INCLUDE_DIR)
  91. SET(OPENAL_FOUND "YES")
  92. ENDIF(OPENAL_LIBRARY AND OPENAL_INCLUDE_DIR)