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.
1234567891011121314 |
- find_package( OpenCV REQUIRED )
- include_directories( ${OpenCV_INCLUDE_DIRS} ${Utils_SOURCE_DIRS})
-
- link_directories(${Utils_SOURCE_DIRS})
-
- add_library(Input input.cpp)
- set_target_properties(Input PROPERTIES VERSION ${PROJECT_VERSION})
- target_include_directories(Input PRIVATE .)
-
- target_link_libraries( Input ${OpenCV_LIBS} Utils)
-
- set(CPACK_PROJECT_NAME ${PROJECT_NAME})
- set(CPACK_PROJECT_VERSION ${PROJECT_VERSION})
- include(CPack)
|