summaryrefslogtreecommitdiff
path: root/runtimes
diff options
context:
space:
mode:
author오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>2019-04-11 17:02:19 +0900
committer이성재/On-Device Lab(SR)/Principal Engineer/삼성전자 <sj925.lee@samsung.com>2019-04-11 17:02:19 +0900
commitcd16cd3aba8c6b720c64970ae4c08cd2055cdc6e (patch)
treeee8f9761dcc38bf4f75471bf609c2ca908e1d880 /runtimes
parent8e90abb24322a1073375049c6c7ceff9c35d5e52 (diff)
downloadnnfw-cd16cd3aba8c6b720c64970ae4c08cd2055cdc6e.tar.gz
nnfw-cd16cd3aba8c6b720c64970ae4c08cd2055cdc6e.tar.bz2
nnfw-cd16cd3aba8c6b720c64970ae4c08cd2055cdc6e.zip
Remove install backend kernel (#4979)
Remove install static kernel library because they are linked at each backend Signed-off-by: Hyeongseok Oh <hseok82.oh@samsung.com>
Diffstat (limited to 'runtimes')
-rw-r--r--runtimes/neurun/backend/acl_cl/kernel/CMakeLists.txt1
-rw-r--r--runtimes/neurun/backend/acl_neon/kernel/CMakeLists.txt1
-rw-r--r--runtimes/neurun/backend/cpu/kernel/CMakeLists.txt1
3 files changed, 0 insertions, 3 deletions
diff --git a/runtimes/neurun/backend/acl_cl/kernel/CMakeLists.txt b/runtimes/neurun/backend/acl_cl/kernel/CMakeLists.txt
index 652514e9a..0338ca8e5 100644
--- a/runtimes/neurun/backend/acl_cl/kernel/CMakeLists.txt
+++ b/runtimes/neurun/backend/acl_cl/kernel/CMakeLists.txt
@@ -18,4 +18,3 @@ target_link_libraries(${LIB_NEURUN_KERNEL_ACL_CL} ${LIB_NEURUN_BACKEND_ACL_COMMO
set_target_properties(${LIB_NEURUN_KERNEL_ACL_CL} PROPERTIES POSITION_INDEPENDENT_CODE ON)
set_target_properties(${LIB_NEURUN_KERNEL_ACL_CL} PROPERTIES OUTPUT_NAME kernel_acl_cl)
-install(TARGETS ${LIB_NEURUN_KERNEL_ACL_CL} DESTINATION lib/neurun)
diff --git a/runtimes/neurun/backend/acl_neon/kernel/CMakeLists.txt b/runtimes/neurun/backend/acl_neon/kernel/CMakeLists.txt
index e6f8a0af4..3944436d6 100644
--- a/runtimes/neurun/backend/acl_neon/kernel/CMakeLists.txt
+++ b/runtimes/neurun/backend/acl_neon/kernel/CMakeLists.txt
@@ -18,4 +18,3 @@ target_link_libraries(${LIB_NEURUN_KERNEL_ACL_NEON} ${LIB_NEURUN_BACKEND_ACL_COM
set_target_properties(${LIB_NEURUN_KERNEL_ACL_NEON} PROPERTIES POSITION_INDEPENDENT_CODE ON)
set_target_properties(${LIB_NEURUN_KERNEL_ACL_NEON} PROPERTIES OUTPUT_NAME kernel_acl_neon)
-install(TARGETS ${LIB_NEURUN_KERNEL_ACL_NEON} DESTINATION lib/neurun)
diff --git a/runtimes/neurun/backend/cpu/kernel/CMakeLists.txt b/runtimes/neurun/backend/cpu/kernel/CMakeLists.txt
index d2b3b543a..2b67ee7dc 100644
--- a/runtimes/neurun/backend/cpu/kernel/CMakeLists.txt
+++ b/runtimes/neurun/backend/cpu/kernel/CMakeLists.txt
@@ -9,4 +9,3 @@ target_link_libraries(${LIB_NEURUN_KERNEL_CPU} nnfw_lib_misc nnfw_lib_cker)
set_target_properties(${LIB_NEURUN_KERNEL_CPU} PROPERTIES POSITION_INDEPENDENT_CODE ON)
set_target_properties(${LIB_NEURUN_KERNEL_CPU} PROPERTIES OUTPUT_NAME kernel_cpu)
-install(TARGETS ${LIB_NEURUN_KERNEL_CPU} DESTINATION lib/neurun)