mirror of
https://github.com/opencv/opencv_contrib.git
synced 2025-10-19 11:21:39 +08:00
11 lines
188 B
CMake
Executable File
11 lines
188 B
CMake
Executable File
# Protobuf package for CNN Triplet training
|
|
unset(Protobuf_FOUND)
|
|
|
|
find_library(Protobuf_LIBS NAMES protobuf
|
|
HINTS
|
|
/usr/local/lib)
|
|
|
|
if(Protobuf_LIBS)
|
|
set(Protobuf_FOUND 1)
|
|
endif()
|