FindOpenAL.cmake 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. #.rst:
  2. # FindOpenAL
  3. # ----------
  4. #
  5. #
  6. #
  7. # Locate OpenAL This module defines OPENAL_LIBRARY OPENAL_FOUND, if
  8. # false, do not try to link to OpenAL OPENAL_INCLUDE_DIR, where to find
  9. # the headers
  10. #
  11. # $OPENALDIR is an environment variable that would correspond to the
  12. # ./configure --prefix=$OPENALDIR used in building OpenAL.
  13. #
  14. # Created by Eric Wing. This was influenced by the FindSDL.cmake
  15. # module.
  16. #=============================================================================
  17. # Copyright 2005-2009 Kitware, Inc.
  18. #
  19. # Distributed under the OSI-approved BSD License (the "License");
  20. # see accompanying file Copyright.txt for details.
  21. #
  22. # This software is distributed WITHOUT ANY WARRANTY; without even the
  23. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  24. # See the License for more information.
  25. #=============================================================================
  26. # (To distribute this file outside of CMake, substitute the full
  27. # License text for the above reference.)
  28. # This makes the presumption that you are include al.h like
  29. # #include "al.h"
  30. # and not
  31. # #include <AL/al.h>
  32. # The reason for this is that the latter is not entirely portable.
  33. # Windows/Creative Labs does not by default put their headers in AL/ and
  34. # OS X uses the convention <OpenAL/al.h>.
  35. #
  36. # For Windows, Creative Labs seems to have added a registry key for their
  37. # OpenAL 1.1 installer. I have added that key to the list of search paths,
  38. # however, the key looks like it could be a little fragile depending on
  39. # if they decide to change the 1.00.0000 number for bug fix releases.
  40. # Also, they seem to have laid down groundwork for multiple library platforms
  41. # which puts the library in an extra subdirectory. Currently there is only
  42. # Win32 and I have hardcoded that here. This may need to be adjusted as
  43. # platforms are introduced.
  44. # The OpenAL 1.0 installer doesn't seem to have a useful key I can use.
  45. # I do not know if the Nvidia OpenAL SDK has a registry key.
  46. #
  47. # For OS X, remember that OpenAL was added by Apple in 10.4 (Tiger).
  48. # To support the framework, I originally wrote special framework detection
  49. # code in this module which I have now removed with CMake's introduction
  50. # of native support for frameworks.
  51. # In addition, OpenAL is open source, and it is possible to compile on Panther.
  52. # Furthermore, due to bugs in the initial OpenAL release, and the
  53. # transition to OpenAL 1.1, it is common to need to override the built-in
  54. # framework.
  55. # Per my request, CMake should search for frameworks first in
  56. # the following order:
  57. # ~/Library/Frameworks/OpenAL.framework/Headers
  58. # /Library/Frameworks/OpenAL.framework/Headers
  59. # /System/Library/Frameworks/OpenAL.framework/Headers
  60. #
  61. # On OS X, this will prefer the Framework version (if found) over others.
  62. # People will have to manually change the cache values of
  63. # OPENAL_LIBRARY to override this selection or set the CMake environment
  64. # CMAKE_INCLUDE_PATH to modify the search paths.
  65. find_path(OPENAL_INCLUDE_DIR al.h
  66. HINTS
  67. ENV OPENALDIR
  68. PATH_SUFFIXES include/AL include/OpenAL include
  69. PATHS
  70. ~/Library/Frameworks
  71. /Library/Frameworks
  72. /sw # Fink
  73. /opt/local # DarwinPorts
  74. /opt/csw # Blastwave
  75. /opt
  76. [HKEY_LOCAL_MACHINE\\SOFTWARE\\Creative\ Labs\\OpenAL\ 1.1\ Software\ Development\ Kit\\1.00.0000;InstallDir]
  77. )
  78. if(CMAKE_SIZEOF_VOID_P EQUAL 8)
  79. set(_OpenAL_ARCH_DIR libs/Win64)
  80. else()
  81. set(_OpenAL_ARCH_DIR libs/Win32)
  82. endif()
  83. find_library(OPENAL_LIBRARY
  84. NAMES OpenAL al openal OpenAL32
  85. HINTS
  86. ENV OPENALDIR
  87. PATH_SUFFIXES lib64 lib libs64 libs ${_OpenAL_ARCH_DIR}
  88. PATHS
  89. ~/Library/Frameworks
  90. /Library/Frameworks
  91. /sw
  92. /opt/local
  93. /opt/csw
  94. /opt
  95. [HKEY_LOCAL_MACHINE\\SOFTWARE\\Creative\ Labs\\OpenAL\ 1.1\ Software\ Development\ Kit\\1.00.0000;InstallDir]
  96. )
  97. unset(_OpenAL_ARCH_DIR)
  98. # handle the QUIETLY and REQUIRED arguments and set OPENAL_FOUND to TRUE if
  99. # all listed variables are TRUE
  100. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  101. FIND_PACKAGE_HANDLE_STANDARD_ARGS(OpenAL DEFAULT_MSG OPENAL_LIBRARY OPENAL_INCLUDE_DIR)
  102. mark_as_advanced(OPENAL_LIBRARY OPENAL_INCLUDE_DIR)