blob: 7a84f1084895eebcab7c91604b520ab6f6dc4529 [file] [log] [blame]
file(GLOB Caffe2_PROTOBUF_FILES "${CMAKE_CURRENT_SOURCE_DIR}/*.proto")
caffe2_protobuf_generate_cpp_py(Caffe2_PROTO_SRCS Caffe2_PROTO_HEADERS Caffe2_PROTO_PY ${Caffe2_PROTOBUF_FILES})
add_library(Caffe2_PROTO OBJECT ${Caffe2_PROTO_HEADERS} ${Caffe2_PROTO_SRCS})
if (MSVC)
if(BUILD_SHARED_LIBS)
set(Caffe2_API_DEFINE "-DCAFFE2_API=__declspec(dllexport)")
else()
set(Caffe2_API_DEFINE "-DCAFFE2_API=")
endif()
else()
set(Caffe2_API_DEFINE "-DCAFFE2_API=")
endif()
target_compile_definitions(
Caffe2_PROTO PRIVATE ${Caffe2_API_DEFINE})
install(FILES ${Caffe2_PROTO_HEADERS} DESTINATION include/caffe2/proto)