From: Igor Kotrasinski Date: Mon, 7 May 2018 12:05:39 +0000 (+0200) Subject: Fix order of linked libraries X-Git-Tag: submit/tizen/20180828.110226~37 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F01%2F179601%2F3;p=platform%2Fcore%2Fsecurity%2Ftef-simulator.git Fix order of linked libraries Fixes broken build when debug is enabled. Change-Id: Ibb84ae714a49d91baa2317d56c8a18e1f6649ea1 Signed-off-by: Igor Kotrasinski --- diff --git a/simulatordaemon/CMakeLists.txt b/simulatordaemon/CMakeLists.txt index c15ad63..4c7c494 100644 --- a/simulatordaemon/CMakeLists.txt +++ b/simulatordaemon/CMakeLists.txt @@ -96,9 +96,9 @@ LINK_DIRECTORIES( TARGET_LINK_LIBRARIES(${TARGET_TEF_SIMULATOR_DAEMON} ${CMAKE_THREAD_LIBS_INIT} - ${DAEMON_DEPS_LIBRARIES} ${TARGET_TEF_SIMULATOR_LOG} ${TARGET_TEF_SIMULATOR_OSAL} + ${DAEMON_DEPS_LIBRARIES} boost_system boost_filesystem boost_regex )