[ARMComputeEx] Fix target_link_libraries dependency (#7745)
author이한종/On-Device Lab(SR)/Engineer/삼성전자 <hanjoung.lee@samsung.com>
Thu, 26 Sep 2019 01:36:23 +0000 (10:36 +0900)
committer오형석/On-Device Lab(SR)/Staff Engineer/삼성전자 <hseok82.oh@samsung.com>
Thu, 26 Sep 2019 01:36:23 +0000 (10:36 +0900)
This library actually needs `arm_compute` rather than
`arm_compute_core`. Without this, Android NDK build fails.

Signed-off-by: Hanjoung Lee <hanjoung.lee@samsung.com>
runtimes/libs/ARMComputeEx/CMakeLists.txt

index ba1536d..95a3807 100644 (file)
@@ -19,7 +19,7 @@ execute_process (
 
 add_library(arm_compute_ex SHARED ${ACL_EX_SRCS})
 target_include_directories(arm_compute_ex PUBLIC ${ACL_EX_BASE})
-target_link_libraries(arm_compute_ex PRIVATE arm_compute_core)
+target_link_libraries(arm_compute_ex PRIVATE arm_compute)
 target_link_libraries(arm_compute_ex PRIVATE nnfw_common)
 target_link_libraries(arm_compute_ex PRIVATE nnfw_coverage)
 # Defines to enable validate check in debug build