Skip to content
Snippets Groups Projects
Commit b4ee0722 authored by Lars Bilke's avatar Lars Bilke
Browse files

[CMake] Workaround for conan tiff-package.

parent 84621082
No related branches found
No related tags found
No related merge requests found
...@@ -67,6 +67,12 @@ target_link_libraries(DataExplorer ...@@ -67,6 +67,12 @@ target_link_libraries(DataExplorer
logog logog
) )
# Workaround for Windows conan tiff-package
if(USE_CONAN AND WIN32)
find_package(ZLIB REQUIRED)
target_link_libraries(DataExplorer ${ZLIB_LIBRARIES})
endif()
if(CMAKE_CROSSCOMPILING) if(CMAKE_CROSSCOMPILING)
target_link_libraries(DataExplorer target_link_libraries(DataExplorer
${QT_XML_DEPS_LIBRARIES} ${QT_XML_DEPS_LIBRARIES}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment