aboutsummaryrefslogtreecommitdiff
path: root/delegate/cmake/Modules/FindTfLite.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'delegate/cmake/Modules/FindTfLite.cmake')
-rw-r--r--delegate/cmake/Modules/FindTfLite.cmake35
1 files changed, 35 insertions, 0 deletions
diff --git a/delegate/cmake/Modules/FindTfLite.cmake b/delegate/cmake/Modules/FindTfLite.cmake
new file mode 100644
index 0000000000..d6c274cb65
--- /dev/null
+++ b/delegate/cmake/Modules/FindTfLite.cmake
@@ -0,0 +1,35 @@
+#
+# Copyright © 2020 Arm Ltd and Contributors. All rights reserved.
+# SPDX-License-Identifier: MIT
+#
+
+include(FindPackageHandleStandardArgs)
+unset(TFLITE_FOUND)
+
+find_path(TfLite_INCLUDE_DIR
+ NAMES
+ tensorflow/lite
+ third_party
+ HINTS
+ ${TFLITE_LIB_ROOT})
+
+find_library(TfLite_LIB
+ NAMES
+ "libtensorflow_lite_all.so"
+ HINTS
+ ${TFLITE_LIB_ROOT})
+
+find_path(TfLite_Schema_INCLUDE_PATH
+ schema_generated.h
+ HINTS
+ ${TFLITE_LIB_ROOT}/tensorflow/lite/schema)
+
+## Set TFLITE_FOUND
+find_package_handle_standard_args(TfLite DEFAULT_MSG TfLite_INCLUDE_DIR TfLite_LIB TfLite_Schema_INCLUDE_PATH)
+
+## Set external variables for usage in CMakeLists.txt
+if(TFLITE_FOUND)
+ set(TfLite_LIB ${TfLite_LIB})
+ set(TfLite_INCLUDE_DIR ${TfLite_INCLUDE_DIR})
+ set(TfLite_Schema_INCLUDE_PATH ${TfLite_Schema_INCLUDE_PATH})
+endif() \ No newline at end of file