From b9b1e058440be458243a75eb66b30e47860dec14 Mon Sep 17 00:00:00 2001 From: David Faure Date: Sat, 11 Feb 2012 16:47:28 +0100 Subject: [PATCH] fix include paths --- CMakeLists.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 5156290fa..9805ca571 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -46,11 +46,13 @@ endif(NOT PLASMA_NO_KIO) if(NOT PLASMA_NO_KDEWEBKIT) include_directories(${CMAKE_SOURCE_DIR}/kdewebkit/) + include_directories(${CMAKE_BINARY_DIR}/kdewebkit/) set(PLASMA_EXTRA_LIBS ${PLASMA_EXTRA_LIBS} kdewebkit) endif(NOT PLASMA_NO_KDEWEBKIT) if(NOT PLASMA_NO_KNEWSTUFF) include_directories(${CMAKE_SOURCE_DIR}/knewstuff/) + include_directories(${CMAKE_BINARY_DIR}/knewstuff/) set(PLASMA_EXTRA_LIBS ${PLASMA_EXTRA_LIBS} knewstuff3) endif(NOT PLASMA_NO_KNEWSTUFF) @@ -67,6 +69,7 @@ endif(NOT PLASMA_NO_PACKAGEKIT) if (NOT PLASMA_NO_KUTILS) include_directories(${CMAKE_SOURCE_DIR}/kutils) + include_directories(${CMAKE_BINARY_DIR}/kutils) set(PLASMA_EXTRA_LIBS ${PLASMA_EXTRA_LIBS} ${KDE4_KUTILS_LIBS}) endif(NOT PLASMA_NO_KUTILS)