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

123456789101112
  1. find_package( OpenCV REQUIRED )
  2. include_directories( ${OpenCV_INCLUDE_DIRS} )
  3. add_library(Processing processing.cpp)
  4. set_target_properties(Processing PROPERTIES VERSION ${PROJECT_VERSION})
  5. target_include_directories(Processing PRIVATE .)
  6. target_link_libraries( Processing ${OpenCV_LIBS})
  7. set(CPACK_PROJECT_NAME ${PROJECT_NAME})
  8. set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
  9. include(CPack)