diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2019-04-24 20:38:57 +0200 |
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2019-04-24 20:38:57 +0200 |
| commit | 79c718d7e0cf9e72e6c5f645b9335fa02cc494ec (patch) | |
| tree | 7e0e5bbf6ee174af121e43a5f7fae16d5e766a4b /video-opencv | |
| parent | dbcb5bf2a7d304f4cf7cc1ef3a02dad91f252360 (diff) | |
cmake: kill link_libraries win32 kludge
Diffstat (limited to 'video-opencv')
| -rw-r--r-- | video-opencv/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/video-opencv/CMakeLists.txt b/video-opencv/CMakeLists.txt index ad245e66..c56e65d4 100644 --- a/video-opencv/CMakeLists.txt +++ b/video-opencv/CMakeLists.txt @@ -4,4 +4,7 @@ find_package(OpenCV QUIET) if(OpenCV_FOUND) otr_module(video-opencv) target_link_libraries(${self} opencv_core opencv_videoio opentrack-video) + if(WIN32) + target_link_libraries(${self} strmiids) + endif() endif() |
