[coco] Link nncc core/foundation libraries (#729)
author박종현/동작제어Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>
Fri, 20 Jul 2018 04:35:56 +0000 (13:35 +0900)
committerGitHub Enterprise <noreply-CODE@samsung.com>
Fri, 20 Jul 2018 04:35:56 +0000 (13:35 +0900)
This commit linkes nncc_core and nncc_foundaton to coco_core (to reuse
common implementation).

Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
contrib/coco/core/CMakeLists.txt

index e3f6da3..1c4195c 100644 (file)
@@ -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)