You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
188 B
11 lines
188 B
10 years ago
|
# 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()
|