From 9418a8a8c84c8185d61e5135b95a67c3d98ba23e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Br=C3=BCns?= Date: Mon, 25 Feb 2019 00:27:07 +0100 Subject: [PATCH] Add libogg to IOMovie target link libraries --- IO/Movie/CMakeLists.txt | 4 ++++ 1 file changed, 4 insertions(+) Index: ParaView-v5.7.0/VTK/IO/Movie/CMakeLists.txt =================================================================== --- ParaView-v5.7.0.orig/VTK/IO/Movie/CMakeLists.txt +++ ParaView-v5.7.0/VTK/IO/Movie/CMakeLists.txt @@ -20,3 +20,7 @@ if (WIN32 AND VTK_USE_VIDEO_FOR_WINDOWS) PRIVATE vfw32) endif () + +if(vtkIOMovie_vtkoggtheora) + target_link_libraries(vtkIOMovie PUBLIC ogg) +endif()