From 259fc54dc6f233181597eff895b60fef0b415571 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=A2=85=ED=98=84/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Staff=20Engineer/=EC=82=BC=EC=84=B1?= =?utf8?q?=EC=A0=84=EC=9E=90?= Date: Fri, 20 Jul 2018 13:35:56 +0900 Subject: [PATCH] [coco] Link nncc core/foundation libraries (#729) This commit linkes nncc_core and nncc_foundaton to coco_core (to reuse common implementation). Signed-off-by: Jonghyun Park --- contrib/coco/core/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/coco/core/CMakeLists.txt b/contrib/coco/core/CMakeLists.txt index e3f6da3..1c4195c 100644 --- a/contrib/coco/core/CMakeLists.txt +++ b/contrib/coco/core/CMakeLists.txt @@ -5,6 +5,8 @@ list(REMOVE_ITEM SOURCES ${TESTS}) add_library(coco_core STATIC ${SOURCES}) set_target_properties(coco_core PROPERTIES POSITION_INDEPENDENT_CODE ON) target_include_directories(coco_core PUBLIC include) +target_link_libraries(coco_core nncc_foundation) +target_link_libraries(coco_core nncc_core) nncc_find_package(GTest QUIET) -- 2.7.4