blob: 5f10df6206d4b5f4d5a7387a6de5b6c0c1fd6f84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
find_package(OpenCV QUIET)
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)
fm_install_executable(${self})
endif()
|