Fix typo in CMakeLists.txt.
This commit is contained in:
parent
1d28e047f3
commit
ffd53c9223
|
@ -74,6 +74,8 @@
|
||||||
# 2016-03-01 PH applied Chris Wilson's patch for MSVC static
|
# 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
|
# 2016-06-24 PH applied Chris Wilson's second patch, putting the first under
|
||||||
# a new option instead of being unconditional.
|
# 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)
|
PROJECT(PCRE2 C)
|
||||||
|
|
||||||
|
@ -190,7 +192,7 @@ IF (MINGW)
|
||||||
ENDIF(MINGW)
|
ENDIF(MINGW)
|
||||||
|
|
||||||
IF(MSVC)
|
IF(MSVC)
|
||||||
OPTION(PCRE_STATIC_RUNTIME OFF CACHE BOOL
|
OPTION(PCRE2_STATIC_RUNTIME
|
||||||
"ON=Compile against the static runtime (/MT)."
|
"ON=Compile against the static runtime (/MT)."
|
||||||
OFF)
|
OFF)
|
||||||
OPTION(INSTALL_MSVC_PDB
|
OPTION(INSTALL_MSVC_PDB
|
||||||
|
|
|
@ -58,6 +58,9 @@ pattern.
|
||||||
for the current position in the subject line was incorrect if it was after an
|
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}.
|
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
|
Version 10.22 29-July-2016
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
Loading…
Reference in New Issue