Commit 918c5d84 authored by Dick Hollenbeck's avatar Dick Hollenbeck

Brians patch

parent c1802037
......@@ -4,11 +4,12 @@ if(ZLIB_FOUND)
else(ZLIB_FOUND)
message(STATUS "Check for installed zlib -- not found")
message(STATUS "Use wxWidgets zlib")
# zlib is not installed, and in this case wxWidgets creates its own zlib library
# include files are in ${wxWidgets_ROOT_DIR}/src/zlib
# and the corresponding library is libwxzlib-<version>.a (like libwxzlib-2.8.a)
# and we try to use it
# Unfortunately, we have no way to know exactlty the path of zlib.h because this file
# Unfortunately, we have no way to know exactly the path of zlib.h because this file
# is in wxWidgets sources, not in wxWidgets include path.
find_path(ZLIB_INCLUDE_DIR
zlib.h
......@@ -16,10 +17,11 @@ else(ZLIB_FOUND)
DOC "location of zlib include files"
)
find_file(
find_file(
ZLIB_LIBRARIES NAMES ${wxWidgets_LIB_DIR}/libwxzlib-2.8.a
ZLIB_LIBRARIES NAMES ${wxWidgets_LIB_DIR}/libwxzlib-2.9.a libwxzlib.a
PATHS ${wxWidgets_ROOT_DIR}/lib/ PATH_SUFFIXES gcc_dll
PATHS ${wxWidgets_ROOT_DIR}/lib/
PATH_SUFFIXES gcc_lib gcc_dll
DOC "location of wxzlib library file"
)
endif(ZLIB_FOUND)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment