From: 오형석/동작제어Lab(SR)/Staff Engineer/삼성전자 Date: Tue, 24 Jul 2018 09:33:03 +0000 (+0900) Subject: [neurun] Change install directory (#2070) X-Git-Tag: 0.2~403 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ee03ac00ca0b991087585566531ea57ddfe16162;p=platform%2Fcore%2Fml%2Fnnfw.git [neurun] Change install directory (#2070) Change install directory name: lib/new_runtime -> lib/neurun Signed-off-by: Hyeongseok Oh --- diff --git a/runtimes/neurun/CMakeLists.txt b/runtimes/neurun/CMakeLists.txt index aac3435..b766f67 100644 --- a/runtimes/neurun/CMakeLists.txt +++ b/runtimes/neurun/CMakeLists.txt @@ -34,4 +34,4 @@ target_link_libraries(${LIB_NEURUN} ${LIB_NEURUN_BACKEND_ACL_CL}) set_target_properties(${LIB_NEURUN} PROPERTIES OUTPUT_NAME neuralnetworks) -install(TARGETS ${LIB_NEURUN} DESTINATION lib/new_runtime) +install(TARGETS ${LIB_NEURUN} DESTINATION lib/neurun) diff --git a/runtimes/neurun/src/backend/acl_cl/CMakeLists.txt b/runtimes/neurun/src/backend/acl_cl/CMakeLists.txt index 614e9f1..759ac4e 100644 --- a/runtimes/neurun/src/backend/acl_cl/CMakeLists.txt +++ b/runtimes/neurun/src/backend/acl_cl/CMakeLists.txt @@ -10,4 +10,4 @@ target_link_libraries(${LIB_NEURUN_BACKEND_ACL_CL} arm_compute) target_link_libraries(${LIB_NEURUN_BACKEND_ACL_CL} nnfw_support_nnapi) set_target_properties(${LIB_NEURUN_BACKEND_ACL_CL} PROPERTIES OUTPUT_NAME backend_acl_cl) -install(TARGETS ${LIB_NEURUN_BACKEND_ACL_CL} DESTINATION lib/new_runtime) +install(TARGETS ${LIB_NEURUN_BACKEND_ACL_CL} DESTINATION lib/neurun) diff --git a/runtimes/neurun/src/backend/cpu/CMakeLists.txt b/runtimes/neurun/src/backend/cpu/CMakeLists.txt index 7fb0ab9..50ca365 100644 --- a/runtimes/neurun/src/backend/cpu/CMakeLists.txt +++ b/runtimes/neurun/src/backend/cpu/CMakeLists.txt @@ -12,4 +12,4 @@ target_link_libraries(${LIB_NEURUN_BACKEND_CPU} nnfw_util) target_link_libraries(${LIB_NEURUN_BACKEND_CPU} nnfw_support_nnapi) set_target_properties(${LIB_NEURUN_BACKEND_CPU} PROPERTIES OUTPUT_NAME backend_cpu) -install(TARGETS ${LIB_NEURUN_BACKEND_CPU} DESTINATION lib/new_runtime) +install(TARGETS ${LIB_NEURUN_BACKEND_CPU} DESTINATION lib/neurun)