summaryrefslogtreecommitdiffhomepage
path: root/anim-crop-tool/CMakeLists.txt
blob: 7b6d22a8be3bcf675726518e9aa137a6b354bf43 (plain)
1
2
3
4
5
6
7
8
9
10
find_package(OpenCV QUIET REQUIRED COMPONENTS core imgcodecs imgproc)
set(self "${PROJECT_NAME}-anim-crop-tool")

include_directories(SYSTEM PRIVATE ${OpenCV_INCLUDE_DIRS})
link_libraries(Corrade::Utility)
link_libraries(${PROJECT_NAME}-anim)

file(GLOB sources "*.cpp" CONFIGURE_ARGS)
add_executable(${self} ${sources})
install(TARGETS ${self} RUNTIME DESTINATION "bin")