X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=cmake%2Fmodules%2FFindPhonon.cmake;h=e4355d0ee9313732df1feb5d0cba697f559bef6a;hp=daa457ad0fe130ee949e66c8d0ae5ead9eff54da;hb=ff81aaec156b8dc2e12f49286fd69e55f215af29;hpb=bb49ea8fb3d3ecfbe8fb87688df6f215d29ad944 diff --git a/cmake/modules/FindPhonon.cmake b/cmake/modules/FindPhonon.cmake index daa457ad..e4355d0e 100644 --- a/cmake/modules/FindPhonon.cmake +++ b/cmake/modules/FindPhonon.cmake @@ -31,9 +31,28 @@ else(PHONON_FOUND) endif(PHONON_INCLUDE_DIR AND PHONON_LIBRARY) # As discussed on kde-buildsystem: first look at CMAKE_PREFIX_PATH, then at the suggested PATHS (kde4 install dir) - find_library(PHONON_LIBRARY NAMES phonon PATHS ${KDE4_LIB_INSTALL_DIR} ${QT_LIBRARY_DIR} NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH) + find_library(PHONON_LIBRARY_RELEASE NAMES phonon phonon4 PATHS ${KDE4_LIB_INSTALL_DIR} ${QT_LIBRARY_DIR} NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH) + find_library(PHONON_LIBRARY_DEBUG NAMES phonond phonond4 PATHS ${KD4_LIB_INSTALL} ${QT_LIBRARY_DIR} NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH) # then at the default system locations (CMAKE_SYSTEM_PREFIX_PATH, i.e. /usr etc.) - find_library(PHONON_LIBRARY NAMES phonon) + find_library(PHONON_LIBRARY_RELEASE NAMES phonon phonon4) + find_library(PHONON_LIBRARY_DEBUG NAMES phonond phonond4) + + # if the release- as well as the debug-version of the library have been found: + IF (PHONON_LIBRARY_DEBUG AND PHONON_LIBRARY_RELEASE) + # if the generator supports configuration types then set + # optimized and debug libraries, or if the CMAKE_BUILD_TYPE has a value + IF (CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE) + SET(PHONON_LIBRARY optimized ${PHONON_LIBRARY_RELEASE} debug ${PHONON_LIBRARY_DEBUG}) + ELSE(CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE) + # if there are no configuration types and CMAKE_BUILD_TYPE has no value + # then just use the release libraries + SET(PHONON_LIBRARY ${PHONON_LIBRARY_RELEASE} ) + ENDIF(CMAKE_CONFIGURATION_TYPES OR CMAKE_BUILD_TYPE) + ELSE(PHONON_LIBRARY_DEBUG AND PHONON_LIBRARY_RELEASE) + IF (PHONON_LIBRARY_RELEASE) + SET(PHONON_LIBRARY ${PHONON_LIBRARY_RELEASE}) + ENDIF (PHONON_LIBRARY_RELEASE) + ENDIF (PHONON_LIBRARY_DEBUG AND PHONON_LIBRARY_RELEASE) find_path(PHONON_INCLUDE_DIR NAMES phonon/phonon_export.h PATHS ${KDE4_INCLUDE_INSTALL_DIR} ${QT_INCLUDE_DIR} ${INCLUDE_INSTALL_DIR} ${QT_LIBRARY_DIR} NO_SYSTEM_ENVIRONMENT_PATH NO_CMAKE_SYSTEM_PATH) find_path(PHONON_INCLUDE_DIR NAMES phonon/phonon_export.h)