From 80db26c6f5218984e14914d450344c2435b14012 Mon Sep 17 00:00:00 2001 From: David Wagner Date: Mon, 5 Jan 2015 21:04:14 +0100 Subject: [PATCH] CMakeLists: link the fs plugin to the pfw core It was never done but for some reason, it seemed to work on some setup... However, the plugin needs to be linked to the parameter-framework's core. Signed-off-by: David Wagner --- CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 8f4d32c..faec137 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -55,6 +55,8 @@ FSSubsystemBuilder.cpp FSSubsystem.cpp FSSubsystemObject.cpp) +target_link_libraries(fs-subsystem ${PFW_LIBRARIES}) + include_directories(${PFW_INCLUDE_DIRS}) install(TARGETS fs-subsystem LIBRARY DESTINATION lib)