summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author박종현/On-Device Lab(SR)/Staff Engineer/삼성전자 <jh1302.park@samsung.com>2019-09-17 17:33:36 +0900
committerGitHub Enterprise <noreply-CODE@samsung.com>2019-09-17 17:33:36 +0900
commit99821073a16efde85848753306e5a59f5e7e3743 (patch)
treefb66399853cf74d5da8d88541d1fdca71fbbdb36
parent670c01e57942bfce5cad41710ef6b70755e28fe6 (diff)
downloadnnfw-99821073a16efde85848753306e5a59f5e7e3743.tar.gz
nnfw-99821073a16efde85848753306e5a59f5e7e3743.tar.bz2
nnfw-99821073a16efde85848753306e5a59f5e7e3743.zip
[plier-tf] Declare dependent library visibility (#7511)
Let's declare the visibility of dependent libraries explicitly. This change allows us to introduce PRIVATE dependencies. Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
-rw-r--r--compiler/plier-tf/CMakeLists.txt5
1 files changed, 3 insertions, 2 deletions
diff --git a/compiler/plier-tf/CMakeLists.txt b/compiler/plier-tf/CMakeLists.txt
index 5d6a77e02..7a71319ab 100644
--- a/compiler/plier-tf/CMakeLists.txt
+++ b/compiler/plier-tf/CMakeLists.txt
@@ -20,8 +20,9 @@ add_library(plier_tf STATIC ${SOURCES})
set_target_properties(plier_tf PROPERTIES POSITION_INDEPENDENT_CODE ON)
target_include_directories(plier_tf PUBLIC include)
-target_link_libraries(plier_tf angkor loco)
-target_link_libraries(plier_tf plier_tf_proto)
+target_link_libraries(plier_tf PUBLIC angkor)
+target_link_libraries(plier_tf PUBLIC loco)
+target_link_libraries(plier_tf PUBLIC plier_tf_proto)
if(NOT ENABLE_TEST)
return()