From 3a7a4253444e90189db66194dcf978778eb80620 Mon Sep 17 00:00:00 2001 From: Stephen Kelly Date: Sun, 4 Sep 2011 21:33:24 +0200 Subject: [PATCH] Remove the exports targets from libraries in frameworks. If there is no kdelibs, there is no kdelibs exports. This fixes some cmake errors resulting from making it possible to build itemmodels standalone. --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 074e6acbe..32aa0d35a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -304,8 +304,8 @@ set_target_properties(plasmaqgv PROPERTIES SOVERSION 1 ) -install(TARGETS plasma EXPORT kdelibsLibraryTargets ${INSTALL_TARGETS_DEFAULT_ARGS}) -install(TARGETS plasmaqgv EXPORT kdelibsLibraryTargets ${INSTALL_TARGETS_DEFAULT_ARGS}) +install(TARGETS plasma ${INSTALL_TARGETS_DEFAULT_ARGS}) +install(TARGETS plasmaqgv ${INSTALL_TARGETS_DEFAULT_ARGS}) ########### install files ###############