blob: a7e759c747845b30245bb4d3731101922128e1c5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
if(NOT DEFINED OpenCV_FOUND)
find_package(OpenCV QUIET)
endif()
if(OpenCV_FOUND)
set(self "floormat-anim-crop-tool")
include_directories(SYSTEM "${OpenCV_INCLUDE_DIRS}")
link_libraries(Corrade::Utility Magnum::Magnum)
link_libraries(opencv_imgproc opencv_imgcodecs opencv_core)
link_libraries(nlohmann_json::nlohmann_json)
file(GLOB sources "*.cpp" CONFIGURE_ARGS)
add_executable(${self} "${sources}")
target_link_libraries(${self} PRIVATE floormat-serialize floormat floormat-hash)
fm_install_executable(${self})
endif()
|