Fix parsing of version with "-" in CMakeLists.txt [Snider, Ziegler].

This commit is contained in:
Mark Adler 2012-04-29 21:15:12 -07:00
parent dbcdbf8c41
commit 816e34e1b5
1 changed files with 1 additions and 1 deletions

View File

@ -128,7 +128,7 @@ endif()
# parse the full version number from zlib.h and include in ZLIB_FULL_VERSION
file(READ ${CMAKE_CURRENT_SOURCE_DIR}/zlib.h _zlib_h_contents)
string(REGEX REPLACE ".*#define[ \t]+ZLIB_VERSION[ \t]+\"([0-9A-Za-z.]+)\".*"
string(REGEX REPLACE ".*#define[ \t]+ZLIB_VERSION[ \t]+\"([-0-9A-Za-z.]+)\".*"
"\\1" ZLIB_FULL_VERSION ${_zlib_h_contents})
if(MINGW)