/CMakeModules/FindPhonon.cmake

http://github.com/tomahawk-player/tomahawk · CMake · 37 lines · 19 code · 6 blank · 12 comment · 2 complexity · 9d38b4c725e12d1b0e10e92e46a143a1 MD5 · raw file

  1. # Find libphonon
  2. # Once done this will define
  3. #
  4. # PHONON_FOUND - system has Phonon Library
  5. # PHONON_INCLUDES - the Phonon include directory
  6. # PHONON_LIBS - link these to use Phonon
  7. # PHONON_VERSION - the version of the Phonon Library
  8. # Copyright (c) 2008, Matthias Kretz <kretz@kde.org>
  9. #
  10. # Redistribution and use is allowed according to the terms of the BSD license.
  11. # For details see the accompanying COPYING-CMAKE-SCRIPTS file.
  12. macro(_phonon_find_version)
  13. set(_phonon_namespace_header_file "${PHONON_INCLUDE_DIR}/phonon/phononnamespace.h")
  14. if (APPLE AND EXISTS "${PHONON_INCLUDE_DIR}/Headers/phononnamespace.h")
  15. set(_phonon_namespace_header_file "${PHONON_INCLUDE_DIR}/Headers/phononnamespace.h")
  16. endif (APPLE AND EXISTS "${PHONON_INCLUDE_DIR}/Headers/phononnamespace.h")
  17. file(READ ${_phonon_namespace_header_file} _phonon_header LIMIT 5000 OFFSET 1000)
  18. string(REGEX MATCH "define PHONON_VERSION_STR \"(4\\.[0-9]+\\.[0-9a-z]+)\"" _phonon_version_match "${_phonon_header}")
  19. set(PHONON_VERSION "${CMAKE_MATCH_1}")
  20. endmacro(_phonon_find_version)
  21. # the dirs listed with HINTS are searched before the default sets of dirs
  22. find_library(PHONON_LIBRARY NAMES phonon HINTS ${KDE4_LIB_INSTALL_DIR} ${QT_LIBRARY_DIR})
  23. find_path(PHONON_INCLUDE_DIR NAMES phonon/phonon_export.h HINTS ${KDE4_INCLUDE_INSTALL_DIR} ${QT_INCLUDE_DIR} ${INCLUDE_INSTALL_DIR} ${QT_LIBRARY_DIR})
  24. if(PHONON_INCLUDE_DIR AND PHONON_LIBRARY)
  25. set(PHONON_LIBS ${phonon_LIB_DEPENDS} ${PHONON_LIBRARY})
  26. set(PHONON_INCLUDES ${PHONON_INCLUDE_DIR}/KDE ${PHONON_INCLUDE_DIR})
  27. _phonon_find_version()
  28. endif(PHONON_INCLUDE_DIR AND PHONON_LIBRARY)
  29. include(FindPackageHandleStandardArgs)
  30. find_package_handle_standard_args(Phonon DEFAULT_MSG PHONON_INCLUDE_DIR PHONON_LIBRARY)
  31. mark_as_advanced(PHONON_INCLUDE_DIR PHONON_LIBRARY)