From 5309c473552a71650045e05c7628968af9277160 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=A2=85=ED=98=84/On-Device=20Lab=28SR=29/Staff?= =?utf8?q?=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Wed, 30 Jan 2019 17:05:23 +0900 Subject: [PATCH] [nnc] Link libprotobuf to nnc_support (#2962) nnc_support implements some protocol buffer helpers, but protocol buffer libraray is not linked. Signed-off-by: Jonghyun Park --- contrib/nnc/support/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/nnc/support/CMakeLists.txt b/contrib/nnc/support/CMakeLists.txt index ccfd8ac..8864b0e 100644 --- a/contrib/nnc/support/CMakeLists.txt +++ b/contrib/nnc/support/CMakeLists.txt @@ -6,3 +6,4 @@ set(SUPPORT_SOURCES nnc_add_library(nnc_support STATIC ${SUPPORT_SOURCES}) set_target_properties(nnc_support PROPERTIES LINKER_LANGUAGE CXX) set_target_properties(nnc_support PROPERTIES POSITION_INDEPENDENT_CODE ON) +target_link_libraries(nnc_support PUBLIC libprotobuf) -- 2.7.4