mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-19 18:57:50 +08:00
27 lines
1.1 KiB
Diff
27 lines
1.1 KiB
Diff
|
diff --git a/CMakeLists.txt b/CMakeLists.txt
|
||
|
index 5b6e382..29a81f0 100644
|
||
|
--- a/CMakeLists.txt
|
||
|
+++ b/CMakeLists.txt
|
||
|
@@ -756,7 +756,7 @@ include(cmake/OpenCVFindLibsVideo.cmake)
|
||
|
include(cmake/OpenCVFindLibsPerf.cmake)
|
||
|
include(cmake/OpenCVFindLAPACK.cmake)
|
||
|
include(cmake/OpenCVFindProtobuf.cmake)
|
||
|
-include(cmake/OpenCVDetectFlatbuffers.cmake)
|
||
|
+find_package(flatbuffers CONFIG REQUIRED)
|
||
|
if(WITH_TENGINE)
|
||
|
include(cmake/OpenCVFindTengine.cmake)
|
||
|
endif()
|
||
|
diff --git a/modules/dnn/CMakeLists.txt b/modules/dnn/CMakeLists.txt
|
||
|
index 804b78e..86d9d45 100644
|
||
|
--- a/modules/dnn/CMakeLists.txt
|
||
|
+++ b/modules/dnn/CMakeLists.txt
|
||
|
@@ -133,7 +133,7 @@ if(TARGET ocv.3rdparty.flatbuffers AND OPENCV_DNN_TFLITE)
|
||
|
if(NOT HAVE_FLATBUFFERS)
|
||
|
message(FATAL_ERROR "DNN: TFLite is not supported without enabled 'flatbuffers'. Check build configuration.")
|
||
|
endif()
|
||
|
- list(APPEND libs ocv.3rdparty.flatbuffers)
|
||
|
+ list(APPEND libs flatbuffers::flatbuffers)
|
||
|
list(APPEND fw_hdrs "${CMAKE_CURRENT_LIST_DIR}/misc/tflite/schema_generated.h")
|
||
|
list(APPEND fw_inc "${CMAKE_CURRENT_LIST_DIR}/misc/tflite")
|
||
|
|