From b005f2a87a3145c61d94f171b259616364199297 Mon Sep 17 00:00:00 2001 From: Jussi Lind Date: Wed, 8 Sep 2010 15:15:57 +0300 Subject: [PATCH] Changes: Comment about preloading added to CMakelists.txt, needless explicit linking to Qt libs removed. --- src/launcher/CMakeLists.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/launcher/CMakeLists.txt b/src/launcher/CMakeLists.txt index f90b5e2..91a4a95 100644 --- a/src/launcher/CMakeLists.txt +++ b/src/launcher/CMakeLists.txt @@ -9,8 +9,9 @@ set(SRC appdata.cpp booster.cpp boosterfactory.cpp connection.cpp daemon.cpp mbo # Find libdl find_library(LIBDL NAMES dl) -# Set libraries to be linked -link_libraries(${QT_LIBRARIES} ${MEEGOTOUCH_LIBRARIES} ${LIBDL}) +# Set libraries to be linked. Shared libraries to be preloaded are not linked in anymore, +# but dlopen():ed and listed in src/launcher/preload.h instead. +link_libraries(${MEEGOTOUCH_LIBRARIES} ${LIBDL}) # Set executable add_executable(applauncherd.bin ${SRC})