From 05ca0aa8f612ee48fb66d4dbebe596b7f1e03181 Mon Sep 17 00:00:00 2001 From: Mauro Sardara Date: Fri, 26 Jul 2019 17:32:48 +0200 Subject: [HICN-253] Mark cmake target for library as static or shared. Change-Id: I1e8a14f9255f04bddbb87f74a6d6163a02dedb22 Signed-off-by: Mauro Sardara --- hicn-light/src/hicn/command_line/controller/CMakeLists.txt | 4 ++-- hicn-light/src/hicn/command_line/daemon/CMakeLists.txt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'hicn-light/src/hicn/command_line') diff --git a/hicn-light/src/hicn/command_line/controller/CMakeLists.txt b/hicn-light/src/hicn/command_line/controller/CMakeLists.txt index 5fd38a7bc..c0a584dae 100644 --- a/hicn-light/src/hicn/command_line/controller/CMakeLists.txt +++ b/hicn-light/src/hicn/command_line/controller/CMakeLists.txt @@ -18,6 +18,6 @@ list(APPEND CONTROLLER_SRC build_executable(${HICN_LIGHT_CONTROL} SOURCES ${CONTROLLER_SRC} LINK_LIBRARIES ${HICN_LIGHT_LINK_LIBRARIES} - DEPENDS ${LIBHICN_LIGHT} - COMPONENT ${LIBHICN_LIGHT} + DEPENDS ${LIBHICN_LIGHT_STATIC} + COMPONENT ${HICN_LIGHT} ) diff --git a/hicn-light/src/hicn/command_line/daemon/CMakeLists.txt b/hicn-light/src/hicn/command_line/daemon/CMakeLists.txt index 8c0df2901..ca8c02ef0 100644 --- a/hicn-light/src/hicn/command_line/daemon/CMakeLists.txt +++ b/hicn-light/src/hicn/command_line/daemon/CMakeLists.txt @@ -18,6 +18,6 @@ list(APPEND DAEMON_SRC build_executable(${HICN_LIGHT_DAEMON} SOURCES ${DAEMON_SRC} LINK_LIBRARIES ${HICN_LIGHT_LINK_LIBRARIES} - DEPENDS ${LIBHICN_LIGHT} - COMPONENT ${LIBHICN_LIGHT} + DEPENDS ${LIBHICN_LIGHT_STATIC} + COMPONENT ${HICN_LIGHT} ) \ No newline at end of file -- cgit 1.2.3-korg