* Introduce BUILD_UBEN option
This commit introduces BUILD_UBEN option to fix Tizen build break.
* Set default value
Signed-off-by: Jonghyun Park <jh1302.park@samsung.com>
option(BUILD_LABS "Build lab projects" OFF)
option(BUILD_TFLITE_TEST "Build tensorflow lite test" OFF)
option(BUILD_TFLITE_CLASSIFY_APP "Build tflite_classify app" OFF)
+option(BUILD_UBEN "Build micro-benchmark (uben) suite" OFF)
if("${TARGET_ARCH}" STREQUAL "armv7l" AND NOT "${TARGET_OS}" STREQUAL "tizen")
set(BUILD_PURE_ARM_COMPUTE ON)
+if(NOT BUILD_UBEN)
+ return()
+endif(NOT BUILD_UBEN)
+
nnfw_find_package(ARMCompute QUIET)
nnfw_find_package(Nonius QUIET)