CMakeLists.txt 510 B

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