FindProtobuf.cmake 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. #.rst:
  2. # FindProtobuf
  3. # ------------
  4. #
  5. # Locate and configure the Google Protocol Buffers library.
  6. #
  7. # The following variables can be set and are optional:
  8. #
  9. # ``Protobuf_SRC_ROOT_FOLDER``
  10. # When compiling with MSVC, if this cache variable is set
  11. # the protobuf-default VS project build locations
  12. # (vsprojects/Debug and vsprojects/Release
  13. # or vsprojects/x64/Debug and vsprojects/x64/Release)
  14. # will be searched for libraries and binaries.
  15. # ``Protobuf_IMPORT_DIRS``
  16. # List of additional directories to be searched for
  17. # imported .proto files.
  18. # ``Protobuf_DEBUG``
  19. # Show debug messages.
  20. #
  21. # Defines the following variables:
  22. #
  23. # ``Protobuf_FOUND``
  24. # Found the Google Protocol Buffers library
  25. # (libprotobuf & header files)
  26. # ``Protobuf_VERSION``
  27. # Version of package found.
  28. # ``Protobuf_INCLUDE_DIRS``
  29. # Include directories for Google Protocol Buffers
  30. # ``Protobuf_LIBRARIES``
  31. # The protobuf libraries
  32. # ``Protobuf_PROTOC_LIBRARIES``
  33. # The protoc libraries
  34. # ``Protobuf_LITE_LIBRARIES``
  35. # The protobuf-lite libraries
  36. #
  37. # The following cache variables are also available to set or use:
  38. #
  39. # ``Protobuf_LIBRARY``
  40. # The protobuf library
  41. # ``Protobuf_PROTOC_LIBRARY``
  42. # The protoc library
  43. # ``Protobuf_INCLUDE_DIR``
  44. # The include directory for protocol buffers
  45. # ``Protobuf_PROTOC_EXECUTABLE``
  46. # The protoc compiler
  47. # ``Protobuf_LIBRARY_DEBUG``
  48. # The protobuf library (debug)
  49. # ``Protobuf_PROTOC_LIBRARY_DEBUG``
  50. # The protoc library (debug)
  51. # ``Protobuf_LITE_LIBRARY``
  52. # The protobuf lite library
  53. # ``Protobuf_LITE_LIBRARY_DEBUG``
  54. # The protobuf lite library (debug)
  55. #
  56. # Example:
  57. #
  58. # .. code-block:: cmake
  59. #
  60. # find_package(Protobuf REQUIRED)
  61. # include_directories(${Protobuf_INCLUDE_DIRS})
  62. # include_directories(${CMAKE_CURRENT_BINARY_DIR})
  63. # protobuf_generate_cpp(PROTO_SRCS PROTO_HDRS foo.proto)
  64. # protobuf_generate_python(PROTO_PY foo.proto)
  65. # add_executable(bar bar.cc ${PROTO_SRCS} ${PROTO_HDRS})
  66. # target_link_libraries(bar ${Protobuf_LIBRARIES})
  67. #
  68. # .. note::
  69. # The ``protobuf_generate_cpp`` and ``protobuf_generate_python``
  70. # functions and :command:`add_executable` or :command:`add_library`
  71. # calls only work properly within the same directory.
  72. #
  73. # .. command:: protobuf_generate_cpp
  74. #
  75. # Add custom commands to process ``.proto`` files to C++::
  76. #
  77. # protobuf_generate_cpp (<SRCS> <HDRS> [<ARGN>...])
  78. #
  79. # ``SRCS``
  80. # Variable to define with autogenerated source files
  81. # ``HDRS``
  82. # Variable to define with autogenerated header files
  83. # ``ARGN``
  84. # ``.proto`` files
  85. #
  86. # .. command:: protobuf_generate_python
  87. #
  88. # Add custom commands to process ``.proto`` files to Python::
  89. #
  90. # protobuf_generate_python (<PY> [<ARGN>...])
  91. #
  92. # ``PY``
  93. # Variable to define with autogenerated Python files
  94. # ``ARGN``
  95. # ``.proto`` filess
  96. #=============================================================================
  97. # Copyright 2009 Kitware, Inc.
  98. # Copyright 2009-2011 Philip Lowman <philip@yhbt.com>
  99. # Copyright 2008 Esben Mose Hansen, Ange Optimization ApS
  100. #
  101. # Distributed under the OSI-approved BSD License (the "License");
  102. # see accompanying file Copyright.txt for details.
  103. #
  104. # This software is distributed WITHOUT ANY WARRANTY; without even the
  105. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  106. # See the License for more information.
  107. #=============================================================================
  108. # (To distribute this file outside of CMake, substitute the full
  109. # License text for the above reference.)
  110. function(PROTOBUF_GENERATE_CPP SRCS HDRS)
  111. if(NOT ARGN)
  112. message(SEND_ERROR "Error: PROTOBUF_GENERATE_CPP() called without any proto files")
  113. return()
  114. endif()
  115. if(PROTOBUF_GENERATE_CPP_APPEND_PATH)
  116. # Create an include path for each file specified
  117. foreach(FIL ${ARGN})
  118. get_filename_component(ABS_FIL ${FIL} ABSOLUTE)
  119. get_filename_component(ABS_PATH ${ABS_FIL} PATH)
  120. list(FIND _protobuf_include_path ${ABS_PATH} _contains_already)
  121. if(${_contains_already} EQUAL -1)
  122. list(APPEND _protobuf_include_path -I ${ABS_PATH})
  123. endif()
  124. endforeach()
  125. else()
  126. set(_protobuf_include_path -I ${CMAKE_CURRENT_SOURCE_DIR})
  127. endif()
  128. if(DEFINED Protobuf_IMPORT_DIRS)
  129. foreach(DIR ${Protobuf_IMPORT_DIRS})
  130. get_filename_component(ABS_PATH ${DIR} ABSOLUTE)
  131. list(FIND _protobuf_include_path ${ABS_PATH} _contains_already)
  132. if(${_contains_already} EQUAL -1)
  133. list(APPEND _protobuf_include_path -I ${ABS_PATH})
  134. endif()
  135. endforeach()
  136. endif()
  137. set(${SRCS})
  138. set(${HDRS})
  139. foreach(FIL ${ARGN})
  140. get_filename_component(ABS_FIL ${FIL} ABSOLUTE)
  141. get_filename_component(FIL_WE ${FIL} NAME_WE)
  142. list(APPEND ${SRCS} "${CMAKE_CURRENT_BINARY_DIR}/${FIL_WE}.pb.cc")
  143. list(APPEND ${HDRS} "${CMAKE_CURRENT_BINARY_DIR}/${FIL_WE}.pb.h")
  144. add_custom_command(
  145. OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${FIL_WE}.pb.cc"
  146. "${CMAKE_CURRENT_BINARY_DIR}/${FIL_WE}.pb.h"
  147. COMMAND ${Protobuf_PROTOC_EXECUTABLE}
  148. ARGS --cpp_out ${CMAKE_CURRENT_BINARY_DIR} ${_protobuf_include_path} ${ABS_FIL}
  149. DEPENDS ${ABS_FIL} ${Protobuf_PROTOC_EXECUTABLE}
  150. COMMENT "Running C++ protocol buffer compiler on ${FIL}"
  151. VERBATIM )
  152. endforeach()
  153. set_source_files_properties(${${SRCS}} ${${HDRS}} PROPERTIES GENERATED TRUE)
  154. set(${SRCS} ${${SRCS}} PARENT_SCOPE)
  155. set(${HDRS} ${${HDRS}} PARENT_SCOPE)
  156. endfunction()
  157. function(PROTOBUF_GENERATE_PYTHON SRCS)
  158. if(NOT ARGN)
  159. message(SEND_ERROR "Error: PROTOBUF_GENERATE_PYTHON() called without any proto files")
  160. return()
  161. endif()
  162. if(PROTOBUF_GENERATE_CPP_APPEND_PATH)
  163. # Create an include path for each file specified
  164. foreach(FIL ${ARGN})
  165. get_filename_component(ABS_FIL ${FIL} ABSOLUTE)
  166. get_filename_component(ABS_PATH ${ABS_FIL} PATH)
  167. list(FIND _protobuf_include_path ${ABS_PATH} _contains_already)
  168. if(${_contains_already} EQUAL -1)
  169. list(APPEND _protobuf_include_path -I ${ABS_PATH})
  170. endif()
  171. endforeach()
  172. else()
  173. set(_protobuf_include_path -I ${CMAKE_CURRENT_SOURCE_DIR})
  174. endif()
  175. if(DEFINED Protobuf_IMPORT_DIRS)
  176. foreach(DIR ${Protobuf_IMPORT_DIRS})
  177. get_filename_component(ABS_PATH ${DIR} ABSOLUTE)
  178. list(FIND _protobuf_include_path ${ABS_PATH} _contains_already)
  179. if(${_contains_already} EQUAL -1)
  180. list(APPEND _protobuf_include_path -I ${ABS_PATH})
  181. endif()
  182. endforeach()
  183. endif()
  184. set(${SRCS})
  185. foreach(FIL ${ARGN})
  186. get_filename_component(ABS_FIL ${FIL} ABSOLUTE)
  187. get_filename_component(FIL_WE ${FIL} NAME_WE)
  188. list(APPEND ${SRCS} "${CMAKE_CURRENT_BINARY_DIR}/${FIL_WE}_pb2.py")
  189. add_custom_command(
  190. OUTPUT "${CMAKE_CURRENT_BINARY_DIR}/${FIL_WE}_pb2.py"
  191. COMMAND ${Protobuf_PROTOC_EXECUTABLE} --python_out ${CMAKE_CURRENT_BINARY_DIR} ${_protobuf_include_path} ${ABS_FIL}
  192. DEPENDS ${ABS_FIL} ${Protobuf_PROTOC_EXECUTABLE}
  193. COMMENT "Running Python protocol buffer compiler on ${FIL}"
  194. VERBATIM )
  195. endforeach()
  196. set(${SRCS} ${${SRCS}} PARENT_SCOPE)
  197. endfunction()
  198. # Backwards compatibility
  199. # Define camel case versions of input variables
  200. foreach(UPPER
  201. PROTOBUF_SRC_ROOT_FOLDER
  202. PROTOBUF_IMPORT_DIRS
  203. PROTOBUF_DEBUG
  204. PROTOBUF_LIBRARY
  205. PROTOBUF_PROTOC_LIBRARY
  206. PROTOBUF_INCLUDE_DIR
  207. PROTOBUF_PROTOC_EXECUTABLE
  208. PROTOBUF_LIBRARY_DEBUG
  209. PROTOBUF_PROTOC_LIBRARY_DEBUG
  210. PROTOBUF_LITE_LIBRARY
  211. PROTOBUF_LITE_LIBRARY_DEBUG
  212. )
  213. if (DEFINED ${UPPER})
  214. string(REPLACE "PROTOBUF_" "Protobuf_" Camel ${UPPER})
  215. if (NOT DEFINED ${Camel})
  216. set(${Camel} ${${UPPER}})
  217. endif()
  218. endif()
  219. endforeach()
  220. if(CMAKE_SIZEOF_VOID_P EQUAL 8)
  221. set(_PROTOBUF_ARCH_DIR x64/)
  222. endif()
  223. include(${CMAKE_CURRENT_LIST_DIR}/SelectLibraryConfigurations.cmake)
  224. # Internal function: search for normal library as well as a debug one
  225. # if the debug one is specified also include debug/optimized keywords
  226. # in *_LIBRARIES variable
  227. function(_protobuf_find_libraries name filename)
  228. if(${name}_LIBRARIES)
  229. # Use result recorded by a previous call.
  230. return()
  231. elseif(${name}_LIBRARY)
  232. # Honor cache entry used by CMake 3.5 and lower.
  233. set(${name}_LIBRARIES "${${name}_LIBRARY}" PARENT_SCOPE)
  234. else()
  235. find_library(${name}_LIBRARY_RELEASE
  236. NAMES ${filename}
  237. PATHS ${Protobuf_SRC_ROOT_FOLDER}/vsprojects/${_PROTOBUF_ARCH_DIR}Release)
  238. mark_as_advanced(${name}_LIBRARY_RELEASE)
  239. find_library(${name}_LIBRARY_DEBUG
  240. NAMES ${filename}
  241. PATHS ${Protobuf_SRC_ROOT_FOLDER}/vsprojects/${_PROTOBUF_ARCH_DIR}Debug)
  242. mark_as_advanced(${name}_LIBRARY_DEBUG)
  243. select_library_configurations(${name})
  244. set(${name}_LIBRARY "${${name}_LIBRARY}" PARENT_SCOPE)
  245. set(${name}_LIBRARIES "${${name}_LIBRARIES}" PARENT_SCOPE)
  246. endif()
  247. endfunction()
  248. # Internal function: find threads library
  249. function(_protobuf_find_threads)
  250. set(CMAKE_THREAD_PREFER_PTHREAD TRUE)
  251. find_package(Threads)
  252. if(Threads_FOUND)
  253. list(APPEND Protobuf_LIBRARIES ${CMAKE_THREAD_LIBS_INIT})
  254. set(Protobuf_LIBRARIES "${Protobuf_LIBRARIES}" PARENT_SCOPE)
  255. endif()
  256. endfunction()
  257. #
  258. # Main.
  259. #
  260. # By default have PROTOBUF_GENERATE_CPP macro pass -I to protoc
  261. # for each directory where a proto file is referenced.
  262. if(NOT DEFINED PROTOBUF_GENERATE_CPP_APPEND_PATH)
  263. set(PROTOBUF_GENERATE_CPP_APPEND_PATH TRUE)
  264. endif()
  265. # Google's provided vcproj files generate libraries with a "lib"
  266. # prefix on Windows
  267. if(MSVC)
  268. set(Protobuf_ORIG_FIND_LIBRARY_PREFIXES "${CMAKE_FIND_LIBRARY_PREFIXES}")
  269. set(CMAKE_FIND_LIBRARY_PREFIXES "lib" "")
  270. find_path(Protobuf_SRC_ROOT_FOLDER protobuf.pc.in)
  271. endif()
  272. # The Protobuf library
  273. _protobuf_find_libraries(Protobuf protobuf)
  274. #DOC "The Google Protocol Buffers RELEASE Library"
  275. _protobuf_find_libraries(Protobuf_LITE protobuf-lite)
  276. # The Protobuf Protoc Library
  277. _protobuf_find_libraries(Protobuf_PROTOC protoc)
  278. # Restore original find library prefixes
  279. if(MSVC)
  280. set(CMAKE_FIND_LIBRARY_PREFIXES "${Protobuf_ORIG_FIND_LIBRARY_PREFIXES}")
  281. endif()
  282. if(UNIX)
  283. _protobuf_find_threads()
  284. endif()
  285. # Find the include directory
  286. find_path(Protobuf_INCLUDE_DIR
  287. google/protobuf/service.h
  288. PATHS ${Protobuf_SRC_ROOT_FOLDER}/src
  289. )
  290. mark_as_advanced(Protobuf_INCLUDE_DIR)
  291. # Find the protoc Executable
  292. find_program(Protobuf_PROTOC_EXECUTABLE
  293. NAMES protoc
  294. DOC "The Google Protocol Buffers Compiler"
  295. PATHS
  296. ${Protobuf_SRC_ROOT_FOLDER}/vsprojects/${_PROTOBUF_ARCH_DIR}Release
  297. ${Protobuf_SRC_ROOT_FOLDER}/vsprojects/${_PROTOBUF_ARCH_DIR}Debug
  298. )
  299. mark_as_advanced(Protobuf_PROTOC_EXECUTABLE)
  300. if(Protobuf_DEBUG)
  301. message(STATUS "[ ${CMAKE_CURRENT_LIST_FILE}:${CMAKE_CURRENT_LIST_LINE} ] "
  302. "requested version of Google Protobuf is ${Protobuf_FIND_VERSION}")
  303. endif()
  304. if(Protobuf_INCLUDE_DIR)
  305. set(_PROTOBUF_COMMON_HEADER ${Protobuf_INCLUDE_DIR}/google/protobuf/stubs/common.h)
  306. if(Protobuf_DEBUG)
  307. message(STATUS "[ ${CMAKE_CURRENT_LIST_FILE}:${CMAKE_CURRENT_LIST_LINE} ] "
  308. "location of common.h: ${_PROTOBUF_COMMON_HEADER}")
  309. endif()
  310. set(Protobuf_VERSION "")
  311. set(Protobuf_LIB_VERSION "")
  312. file(STRINGS ${_PROTOBUF_COMMON_HEADER} _PROTOBUF_COMMON_H_CONTENTS REGEX "#define[ \t]+GOOGLE_PROTOBUF_VERSION[ \t]+")
  313. if(_PROTOBUF_COMMON_H_CONTENTS MATCHES "#define[ \t]+GOOGLE_PROTOBUF_VERSION[ \t]+([0-9]+)")
  314. set(Protobuf_LIB_VERSION "${CMAKE_MATCH_1}")
  315. endif()
  316. unset(_PROTOBUF_COMMON_H_CONTENTS)
  317. math(EXPR _PROTOBUF_MAJOR_VERSION "${Protobuf_LIB_VERSION} / 1000000")
  318. math(EXPR _PROTOBUF_MINOR_VERSION "${Protobuf_LIB_VERSION} / 1000 % 1000")
  319. math(EXPR _PROTOBUF_SUBMINOR_VERSION "${Protobuf_LIB_VERSION} % 1000")
  320. set(Protobuf_VERSION "${_PROTOBUF_MAJOR_VERSION}.${_PROTOBUF_MINOR_VERSION}.${_PROTOBUF_SUBMINOR_VERSION}")
  321. if(Protobuf_DEBUG)
  322. message(STATUS "[ ${CMAKE_CURRENT_LIST_FILE}:${CMAKE_CURRENT_LIST_LINE} ] "
  323. "${_PROTOBUF_COMMON_HEADER} reveals protobuf ${Protobuf_VERSION}")
  324. endif()
  325. # Check Protobuf compiler version to be aligned with libraries version
  326. execute_process(COMMAND ${Protobuf_PROTOC_EXECUTABLE} --version
  327. OUTPUT_VARIABLE _PROTOBUF_PROTOC_EXECUTABLE_VERSION)
  328. if("${_PROTOBUF_PROTOC_EXECUTABLE_VERSION}" MATCHES "libprotoc ([0-9.]+)")
  329. set(_PROTOBUF_PROTOC_EXECUTABLE_VERSION "${CMAKE_MATCH_1}")
  330. endif()
  331. if(Protobuf_DEBUG)
  332. message(STATUS "[ ${CMAKE_CURRENT_LIST_FILE}:${CMAKE_CURRENT_LIST_LINE} ] "
  333. "${Protobuf_PROTOC_EXECUTABLE} reveals version ${_PROTOBUF_PROTOC_EXECUTABLE_VERSION}")
  334. endif()
  335. if(NOT "${_PROTOBUF_PROTOC_EXECUTABLE_VERSION}" VERSION_EQUAL "${Protobuf_VERSION}")
  336. message(WARNING "Protobuf compiler version ${_PROTOBUF_PROTOC_EXECUTABLE_VERSION}"
  337. " doesn't match library version ${Protobuf_VERSION}")
  338. endif()
  339. endif()
  340. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  341. FIND_PACKAGE_HANDLE_STANDARD_ARGS(Protobuf
  342. REQUIRED_VARS Protobuf_LIBRARIES Protobuf_INCLUDE_DIR
  343. VERSION_VAR Protobuf_VERSION
  344. )
  345. if(Protobuf_FOUND)
  346. set(Protobuf_INCLUDE_DIRS ${Protobuf_INCLUDE_DIR})
  347. endif()
  348. # Backwards compatibility
  349. # Define upper case versions of output variables
  350. foreach(Camel
  351. Protobuf_SRC_ROOT_FOLDER
  352. Protobuf_IMPORT_DIRS
  353. Protobuf_DEBUG
  354. Protobuf_INCLUDE_DIRS
  355. Protobuf_LIBRARIES
  356. Protobuf_PROTOC_LIBRARIES
  357. Protobuf_LITE_LIBRARIES
  358. Protobuf_LIBRARY
  359. Protobuf_PROTOC_LIBRARY
  360. Protobuf_INCLUDE_DIR
  361. Protobuf_PROTOC_EXECUTABLE
  362. Protobuf_LIBRARY_DEBUG
  363. Protobuf_PROTOC_LIBRARY_DEBUG
  364. Protobuf_LITE_LIBRARY
  365. Protobuf_LITE_LIBRARY_DEBUG
  366. )
  367. string(TOUPPER ${Camel} UPPER)
  368. set(${UPPER} ${${Camel}})
  369. endforeach()