diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-19 11:41:02 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-19 11:41:02 +0200 |
commit | 5f979f925deff0d0dfe0863afd0a99ba0726aaca (patch) | |
tree | 0e0b74f369af9e1761e00aabf461797178c1846c /anim-crop-tool | |
parent | 66caf4cc49c06dc609aef50f7f1f235600d7879d (diff) |
cmake: fix typo
Diffstat (limited to 'anim-crop-tool')
-rw-r--r-- | anim-crop-tool/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/anim-crop-tool/CMakeLists.txt b/anim-crop-tool/CMakeLists.txt index 48e41b8f..2267a1db 100644 --- a/anim-crop-tool/CMakeLists.txt +++ b/anim-crop-tool/CMakeLists.txt @@ -1,5 +1,5 @@ -find_package(OpenCV QUIET COMPONENTS core imgcodecs imgproc) -if(Opencv_FOUND) +find_package(OpenCV QUIET) +if(OpenCV_FOUND) set(self "${PROJECT_NAME}-anim-crop-tool") include_directories(SYSTEM PRIVATE ${OpenCV_INCLUDE_DIRS}) |