From b80c3508d675c3564426de93a88779c848107b1b Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Thu, 1 Jul 2010 11:50:31 +0000 Subject: [PATCH] * All tools: - Library linking: there must not be "target_link_library()" for libraries, only when building binaries. Avoid clashes between static module or class variables, and strange reinitialisation of those variables. - Change: Boost is now always linked staticly. --- solstice/src/CMakeLists.txt | 8 -------- 1 file changed, 8 deletions(-) diff --git a/solstice/src/CMakeLists.txt b/solstice/src/CMakeLists.txt index f08b4f63..6c2fd370 100644 --- a/solstice/src/CMakeLists.txt +++ b/solstice/src/CMakeLists.txt @@ -37,14 +37,6 @@ qt4_wrap_cpp ( mocCpps ${mocIncludes} ) add_library ( solstice ${cpps} ${mocCpps} ) - target_link_libraries ( solstice ${EQUINOX_LIBRARIES} - ${CORIOLIS_LIBRARIES} - ${HURRICANE_LIBRARIES} - ${HURRICANE_GRAPHICAL_LIBRARIES} - ${QT_LIBRARIES} - ${LEFDEF_LIBRARIES} - ${OA_LIBRARIES} - ) install ( TARGETS solstice DESTINATION lib${LIB_SUFFIX} ) install ( FILES ${includes} ${mocIncludes} DESTINATION include/coriolis2/solstice )