Skip to content

Commit

Permalink
Unix|CMake|libgui: Link with zlib
Browse files Browse the repository at this point in the history
IssueID #2133
  • Loading branch information
skyjake committed May 2, 2016
1 parent ba98d5b commit e1bb1ee
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions doomsday/sdk/libgui/CMakeLists.txt
Expand Up @@ -110,6 +110,9 @@ if (TARGET assimp)
add_dependencies (libgui assimp)
if (MSVC)
target_link_libraries (libgui PRIVATE zlibstatic) # from assimp project
elseif (NOT APPLE)
find_package (ZLIB)
target_link_libraries (libgui PRIVATE ${ZLIB_LIBRARIES})
endif ()
endif ()

Expand Down

0 comments on commit e1bb1ee

Please sign in to comment.