Skip to content

Commit

Permalink
tensorflow lite: fix include 'tensorflow/lite/version.h'
Browse files Browse the repository at this point in the history
Add 'tensorflow/core/public/version.h' in library include path
  • Loading branch information
Wawha committed Sep 27, 2023
1 parent dd8ffaf commit 9a08366
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions recipes/tensorflow-lite/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ def _module_file(self):
def package(self):
copy(self, "LICENSE", self.source_folder, join(self.package_folder, "licenses"))
copy(self, "*.h", join(self.source_folder, "tensorflow", "lite"), join(self.package_folder, "include", "tensorflow", "lite"))
copy(self, "ver*.h", join(self.source_folder, "tensorflow", "core", "public"), join(self.package_folder, "include", "tensorflow", "core", "public"))
copy(self, "*.a", self.build_folder, join(self.package_folder, "lib"))
copy(self, "*.so", self.build_folder, join(self.package_folder, "lib"))
copy(self, "*.dylib", self.build_folder, join(self.package_folder, "lib"))
Expand Down

0 comments on commit 9a08366

Please sign in to comment.