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 622B

12345678910111213141516171819202122
  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. include_directories( ${CMAKE_CURRENT_SOURCE_DIR}/Input )
  8. link_directories( ${Input_SOURCE_DIRS} )
  9. add_subdirectory(Input)
  10. target_include_directories(Input PRIVATE .)
  11. add_executable(lfr_image_processing lfr.cpp)
  12. target_link_libraries( lfr_image_processing ${OpenCV_LIBS})
  13. target_link_libraries( lfr_image_processing Input )
  14. set(CPACK_PROJECT_NAME ${PROJECT_NAME})
  15. set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
  16. include(CPack)