From c844e9f17220c0e0d7045879684cedfcf985c129 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EB=B0=95=EC=A2=85=ED=98=84/On-Device=20Lab=28SR=29/Staff?= =?utf8?q?=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Mon, 18 Mar 2019 18:33:52 +0900 Subject: [PATCH] Require TensorFlow Lite when building nnfw_lib_tflite (#4774) nnfw_lib_tflite depends on TensorFlow Lite, but there is no explicit find_package statement. Signed-off-by: Jonghyun Park --- libs/tflite/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libs/tflite/CMakeLists.txt b/libs/tflite/CMakeLists.txt index e816189..a256a45 100644 --- a/libs/tflite/CMakeLists.txt +++ b/libs/tflite/CMakeLists.txt @@ -1,3 +1,5 @@ +nnfw_find_package(TensorFlowLite REQUIRED) + file(GLOB_RECURSE SOURCES "src/*.cpp") file(GLOB_RECURSE TESTS "src/*.test.cpp") list(REMOVE_ITEM SOURCES ${TESTS}) -- 2.7.4