Fix detecting static 3rd party libs

This commit is contained in:
Martchus 2016-08-19 16:18:27 +02:00
parent 334f9f9c60
commit 0541c08864
1 changed files with 9 additions and 1 deletions

View File

@ -168,7 +168,15 @@ use_cpp_utilities()
# find 3rd party libraries
include(3rdParty)
use_external_library_from_package(ZLIB ANY_VERSION ZLIB_INCLUDE_DIRS ZLIB_LIBRARIES AUTO_LINKAGE REQUIRED) # zlib
# zlib
use_external_library_from_package(
z
ZLIB ANY_VERSION
ZLIB_INCLUDE_DIRS
ZLIB_LIBRARIES
AUTO_LINKAGE
REQUIRED
)
# include modules to apply configuration
include(BasicConfig)