Projektarbeit Line Following Robot bei Prof. Chowanetz im WS22/23
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CMakeLists.txt 404B

12345678910111213141516
  1. cmake_minimum_required(VERSION 3.0.0)
  2. project(lfr_image_processing VERSION 0.1.0)
  3. include(CTest)
  4. enable_testing()
  5. find_package( OpenCV REQUIRED )
  6. include_directories( ${OpenCV_INCLUDE_DIRS} )
  7. add_executable(lfr_image_processing lfr.cpp)
  8. target_link_libraries( lfr_image_processing ${OpenCV_LIBS} )
  9. set(CPACK_PROJECT_NAME ${PROJECT_NAME})
  10. set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
  11. include(CPack)