mirror of
https://github.com/2martens/uni.git
synced 2026-05-07 03:46:25 +02:00
6 lines
241 B
CMake
6 lines
241 B
CMake
find_package( OpenCV REQUIRED )
|
|
add_executable(displayImage displayImage.cpp)
|
|
add_executable(loadModifySave loadModifySaveImage.cpp)
|
|
target_link_libraries( displayImage ${OpenCV_LIBS} )
|
|
target_link_libraries( loadModifySave ${OpenCV_LIBS} )
|