From: Timo Lotterbach Date: Thu, 7 Mar 2013 11:39:19 +0000 (-0800) Subject: CMake: fixed build, if only GenericCommunicator is build X-Git-Tag: 1_0_rc~9 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e4ec2b7ca040989ab38f86144116217312c260b5;p=profile%2Fivi%2Flayer-management.git CMake: fixed build, if only GenericCommunicator is build Signed-off-by: Timo Lotterbach --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 18336bc..22be97e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -122,6 +122,8 @@ endif(WITH_SYSTEMD_HEALTH_MONITOR) build_flag (WITH_GENERIC_COMMUNICATOR "Build Generic Communicator Plugin based on IpcModules" ON) #=========================================================================================================== if (WITH_GENERIC_COMMUNICATOR) + add_subdirectory_once (LayerManagerUtils) + add_subdirectory_once (LayerManagerBase) add_subdirectory_once (LayerManagerPlugins/IpcModules) add_subdirectory_once (LayerManagerCommands) add_subdirectory_once (LayerManagerPlugins/Communicators/GenericCommunicator)