summaryrefslogtreecommitdiffhomepage
path: root/crop-tool/CMakeLists.txt
blob: cc38c51b695c310177f53caea8ef908d331d934e (plain)
1
2
3
4
5
6
find_package(OpenCV QUIET REQUIRED COMPONENTS core imgcodecs imgproc highgui)
file(GLOB sources "*.cpp" CONFIGURE_ARGS)
add_executable(crop-tool ${sources})
target_include_directories(crop-tool SYSTEM PRIVATE ${OpenCV_INCLUDE_DIRS})
target_link_libraries(crop-tool opencv_highgui opencv_imgproc opencv_imgcodecs opencv_core)
target_link_libraries(crop-tool Corrade::Utility Magnum::Trade)