diff options
author | Dirk Mueller <mueller@kde.org> | 2007-06-20 18:32:05 +0000 |
---|---|---|
committer | Dirk Mueller <mueller@kde.org> | 2007-06-20 18:32:05 +0000 |
commit | c03f75251d402279374ff280fedadaaa04112ee4 (patch) | |
tree | 2d1988c9c6e953b250f310c01bd8148212bf971f /modules/FindKipi.cmake | |
parent | 7fef784cb6eb4735a8d95cd05d57553b5f6ce407 (diff) | |
download | extra-cmake-modules-c03f75251d402279374ff280fedadaaa04112ee4.tar.gz extra-cmake-modules-c03f75251d402279374ff280fedadaaa04112ee4.tar.bz2 |
link against a library so that cmake can actually figure out the
dependencies and parallel build doesn't break.
Hopefully with that, dashboard will finally be able to compile
extragear-libs. Its been weeks. Yay.
svn path=/trunk/KDE/kdelibs/; revision=678125
Diffstat (limited to 'modules/FindKipi.cmake')
-rw-r--r-- | modules/FindKipi.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindKipi.cmake b/modules/FindKipi.cmake index e7027ef0..5f8430dc 100644 --- a/modules/FindKipi.cmake +++ b/modules/FindKipi.cmake @@ -26,7 +26,7 @@ else (KIPI_INCLUDE_DIR AND KIPI_LIBRARIES) set(KIPI_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/libkipi) set(KIPI_DEFINITIONS -I${KIPI_INCLUDE_DIR}) - set(KIPI_LIBRARIES ${CMAKE_BINARY_DIR}/lib/libkipi.so) + set(KIPI_LIBRARIES kipi) message(STATUS "Found Kipi library in local sub-folder: ${KIPI_LIBRARIES}") set(KIPI_FOUND TRUE) MARK_AS_ADVANCED(KIPI_INCLUDE_DIR KIPI_LIBRARIES) |