From 53df8494278fe78a077c85b7905fdf26d3206ac9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9D=B4=ED=95=9C=EC=A2=85/=EB=8F=99=EC=9E=91=EC=A0=9C?= =?utf8?q?=EC=96=B4Lab=28SR=29/Engineer/=EC=82=BC=EC=84=B1=EC=A0=84?= =?utf8?q?=EC=9E=90?= Date: Wed, 30 May 2018 10:32:10 +0900 Subject: [PATCH] Enable Android build of tflite_benchmark, disable tflite_run (#1413) Enable/Disable build for Android - Enable build of tflite_benchmark - Disable tflite_run since it has boost library build issue (Related to standard library - gnustl/libc++) Signed-off-by: Hanjoung Lee --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 06d26b1..59099fa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -170,7 +170,7 @@ if("${TARGET_OS}" STREQUAL "android") add_subdirectory(libs) add_subdirectory(externals) add_subdirectory(tools/nnapi_test) - add_subdirectory(tools/tflite_run) + add_subdirectory(tools/tflite_benchmark) if(BUILD_NN_RUNTIME) set(LIB_RUNTIME runtime) -- 2.7.4