You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
-
- find_package(Protobuf)
-
- if(PROTOBUF_FOUND)
- include_directories(${PROTOBUF_INCLUDE_DIR})
- include_directories(${CMAKE_CURRENT_BINARY_DIR})
- protobuf_generate_cpp(CAFFE_PROTO_SRCS CAFFE_PROTO_HDRS caffe.proto)
- add_executable(caffe2ncnn caffe2ncnn.cpp ${CAFFE_PROTO_SRCS} ${CAFFE_PROTO_HDRS})
- set_target_properties(caffe2ncnn PROPERTIES CXX_STANDARD 11)
- target_link_libraries(caffe2ncnn ${PROTOBUF_LIBRARIES})
- else()
- message(WARNING "Protobuf not found, caffe model convert tool won't be built")
- endif()
|