CMakeLists.txt 488 B

1234567891011121314
  1. cmake_minimum_required(VERSION 3.5)
  2. project(gsd_test CXX)
  3. add_executable(${PROJECT_NAME} test_main.cc)
  4. # ##############################################################################
  5. # If you include the drogon source code locally in your project, use this method
  6. # to add drogon
  7. # target_link_libraries(${PROJECT_NAME}_test PRIVATE drogon)
  8. #
  9. # and comment out the following lines
  10. target_link_libraries(${PROJECT_NAME} PRIVATE Drogon::Drogon)
  11. ParseAndAddDrogonTests(${PROJECT_NAME})