CMake Error at CMakeLists.txt:10 (find_package):
Could not find a package configuration file provided by "tensorflow-lite"
with any of the following names:
tensorflow-liteConfig.cmake
tensorflow-lite-config.cmake
Add the installation prefix of "tensorflow-lite" to CMAKE_PREFIX_PATH or
set "tensorflow-lite_DIR" to a directory containing one of the above files.
If "tensorflow-lite" provides a separate development package or SDK, be
sure it has been installed.
Does TensorFlow Lite not provide a prefab publish? This would make it a lot easier to integrate in such environments. Now I have to manually extract the .aar/zip and incldue the headers.
Hey all! I'm trying to use Tensorflow Lite in an Android NDK/C++ environment.
My
build.gradle
looks something like this:And in my
CMakeLists.txt
I try to findtensorflow-lite
as a prefab:However, CMake is not able to find the package:
Does TensorFlow Lite not provide a prefab publish? This would make it a lot easier to integrate in such environments. Now I have to manually extract the .aar/zip and incldue the headers.