Fix typo in CMakeLists.txt.

This commit is contained in:
Philip.Hazel 2016-10-05 17:03:52 +00:00
parent 1d28e047f3
commit ffd53c9223
2 changed files with 6 additions and 1 deletions

View File

@ -74,6 +74,8 @@
# 2016-03-01 PH applied Chris Wilson's patch for MSVC static
# 2016-06-24 PH applied Chris Wilson's second patch, putting the first under
# a new option instead of being unconditional.
# 2016-10-05 PH fixed a typo (PCRE should be PCRE2) in above patch
# fix by David Gaussmann
PROJECT(PCRE2 C)
@ -190,7 +192,7 @@ IF (MINGW)
ENDIF(MINGW)
IF(MSVC)
OPTION(PCRE_STATIC_RUNTIME OFF CACHE BOOL
OPTION(PCRE2_STATIC_RUNTIME
"ON=Compile against the static runtime (/MT)."
OFF)
OPTION(INSTALL_MSVC_PDB

View File

@ -58,6 +58,9 @@ pattern.
for the current position in the subject line was incorrect if it was after an
escape sequence for a character whose code point was greater than \x{ff}.
9. Change 19 for 10.22 had a typo (PCRE_STATIC_RUNTIME should be
PCRE2_STATIC_RUNTIME). Fix from David Gaussmann.
Version 10.22 29-July-2016
--------------------------