CMakeLists.txt 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. # Copyright 2018 gRPC authors.
  2. #
  3. # Licensed under the Apache License, Version 2.0 (the "License");
  4. # you may not use this file except in compliance with the License.
  5. # You may obtain a copy of the License at
  6. #
  7. # http://www.apache.org/licenses/LICENSE-2.0
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. #
  15. # cmake build file for C++ route_guide example.
  16. # Assumes protobuf and gRPC have been installed using cmake.
  17. # See cmake_externalproject/CMakeLists.txt for all-in-one cmake build
  18. # that automatically builds all the dependencies before building route_guide.
  19. cmake_minimum_required(VERSION 3.5.1)
  20. project(RouteGuide C CXX)
  21. include(../cmake/common.cmake)
  22. # Proto file
  23. get_filename_component(rg_proto "../../protos/route_guide.proto" ABSOLUTE)
  24. get_filename_component(rg_proto_path "${rg_proto}" PATH)
  25. # Generated sources
  26. set(rg_proto_srcs "${CMAKE_CURRENT_BINARY_DIR}/route_guide.pb.cc")
  27. set(rg_proto_hdrs "${CMAKE_CURRENT_BINARY_DIR}/route_guide.pb.h")
  28. set(rg_grpc_srcs "${CMAKE_CURRENT_BINARY_DIR}/route_guide.grpc.pb.cc")
  29. set(rg_grpc_hdrs "${CMAKE_CURRENT_BINARY_DIR}/route_guide.grpc.pb.h")
  30. add_custom_command(
  31. OUTPUT "${rg_proto_srcs}" "${rg_proto_hdrs}" "${rg_grpc_srcs}" "${rg_grpc_hdrs}"
  32. COMMAND ${_PROTOBUF_PROTOC}
  33. ARGS --grpc_out "${CMAKE_CURRENT_BINARY_DIR}"
  34. --cpp_out "${CMAKE_CURRENT_BINARY_DIR}"
  35. -I "${rg_proto_path}"
  36. --plugin=protoc-gen-grpc="${_GRPC_CPP_PLUGIN_EXECUTABLE}"
  37. "${rg_proto}"
  38. DEPENDS "${rg_proto}")
  39. # Include generated *.pb.h files
  40. include_directories("${CMAKE_CURRENT_BINARY_DIR}")
  41. # rg_grpc_proto
  42. add_library(rg_grpc_proto
  43. ${rg_grpc_srcs}
  44. ${rg_grpc_hdrs}
  45. ${rg_proto_srcs}
  46. ${rg_proto_hdrs})
  47. target_link_libraries(rg_grpc_proto
  48. ${_REFLECTION}
  49. ${_GRPC_GRPCPP}
  50. ${_PROTOBUF_LIBPROTOBUF})
  51. # route_guide_helper
  52. add_library(route_guide_helper
  53. "helper.h"
  54. "helper.cc")
  55. target_link_libraries(route_guide_helper
  56. rg_grpc_proto
  57. ${_REFLECTION}
  58. ${_GRPC_GRPCPP}
  59. ${_PROTOBUF_LIBPROTOBUF})
  60. # Targets route_guide_(client|server)
  61. foreach(_target
  62. route_guide_client route_guide_server)
  63. add_executable(${_target}
  64. "${_target}.cc")
  65. target_link_libraries(${_target}
  66. rg_grpc_proto
  67. route_guide_helper
  68. ${_REFLECTION}
  69. ${_GRPC_GRPCPP}
  70. ${_PROTOBUF_LIBPROTOBUF})
  71. endforeach()