diff options
Diffstat (limited to 'modules/FindBlitz.cmake')
| -rw-r--r-- | modules/FindBlitz.cmake | 12 | 
1 files changed, 12 insertions, 0 deletions
| diff --git a/modules/FindBlitz.cmake b/modules/FindBlitz.cmake index 84abc6ad..a26cf5c8 100644 --- a/modules/FindBlitz.cmake +++ b/modules/FindBlitz.cmake @@ -1,3 +1,6 @@ +################################################################ +########## DEPRECATED, use FindQImageBlitz instead ############# +################################################################  # - Try to find blitz lib  # Once done this will define  # @@ -16,12 +19,20 @@ if (BLITZ_INCLUDES AND BLITZ_LIBRARIES)    set(Blitz_FIND_QUIETLY TRUE)  endif (BLITZ_INCLUDES AND BLITZ_LIBRARIES) +if (NOT WIN32) +    # use pkg-config to get the directories and then use these values +    # in the FIND_PATH() and FIND_LIBRARY() calls +    include(UsePkgConfig) +    pkgconfig(qimageblitz _QIMAGEBLITZ_INCLUDEDIR _QIMAGEBLITZ_LIBDIR _dummyLinkFlags _dummyCflags) +endif (NOT WIN32) +  find_path(BLITZ_INCLUDES    NAMES    qimageblitz.h    PATH_SUFFIXES qimageblitz    PATHS    $ENV{QIMAGEBLITZDIR}/include +  ${_QIMAGEBLITZ_INCLUDEDIR}    ${KDE4_INCLUDE_DIR}    ${INCLUDE_INSTALL_DIR}  ) @@ -31,6 +42,7 @@ find_library_with_debug(BLITZ_LIBRARIES    qimageblitz    PATHS    $ENV{QIMAGEBLITZDIR}/lib +  ${_QIMAGEBLITZ_LIBDIR}    ${KDE4_LIB_DIR}    ${LIB_INSTALL_DIR}  ) | 
