CMakeLists.txt 471 B

123456789101112131415
  1. if(gRPC_FOUND)
  2. add_subdirectory("examples_common")
  3. add_subdirectory("addressbook")
  4. add_subdirectory("addressbookserver")
  5. configure_file(client_server_driver.sh.in addressbook_driver.sh @ONLY)
  6. add_subdirectory("simplechat")
  7. add_subdirectory("simplechatserver")
  8. configure_file(client_server_driver.sh.in simplechat_driver.sh @ONLY)
  9. add_subdirectory("clienttutorial")
  10. else()
  11. message(WARNING "gRPC not found: disable examples")
  12. endif()