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/FindKexiv2.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/FindKexiv2.cmake')
-rw-r--r-- | modules/FindKexiv2.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindKexiv2.cmake b/modules/FindKexiv2.cmake index a9eca2dc..e292334b 100644 --- a/modules/FindKexiv2.cmake +++ b/modules/FindKexiv2.cmake @@ -26,7 +26,7 @@ else (KEXIV2_INCLUDE_DIR AND KEXIV2_LIBRARIES) set(KEXIV2_INCLUDE_DIR ${CMAKE_SOURCE_DIR}/libkexiv2) set(KEXIV2_DEFINITIONS -I${KEXIV2_INCLUDE_DIR}) - set(KEXIV2_LIBRARIES ${CMAKE_BINARY_DIR}/lib/libkexiv2.so) + set(KEXIV2_LIBRARIES kexiv2) message(STATUS "Found Kexiv2 library in local sub-folder: ${KEXIV2_LIBRARIES}") set(KEXIV2_FOUND TRUE) MARK_AS_ADVANCED(KEXIV2_INCLUDE_DIR KEXIV2_LIBRARIES) |