Fix CMAKE_C_FLAGS setting

This commit is contained in:
Philip.Hazel 2015-08-24 16:04:32 +00:00
parent 67764372eb
commit 4facdb9613
2 changed files with 5 additions and 1 deletions

View File

@ -69,6 +69,7 @@
# 2014-08-29 PH converted the file for PCRE2 (which has no C++).
# 2015-04-24 PH added support for PCRE2_DEBUG
# 2015-07-16 PH updated for new pcre2_find_bracket source module
# 2015-08-24 PH correct C_FLAGS setting (patch from Roy Ivy III)
PROJECT(PCRE2 C)
@ -80,7 +81,7 @@ CMAKE_POLICY(SET CMP0026 OLD)
SET(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake) # for FindReadline.cmake
SET(CMAKE_C_FLAGS -I${PROJECT_SOURCE_DIR}/src)
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -I${PROJECT_SOURCE_DIR}/src")
# external packages
FIND_PACKAGE( BZip2 )

View File

@ -154,6 +154,9 @@ non-zero.
42. Fix two assertion fails in JIT. These issues were found by Karl Skomski
with a custom LLVM fuzzer.
43. Correct the setting of CMAKE_C_FLAGS in CMakeLists.txt (patch from Roy Ivy
III).
Version 10.20 30-June-2015
--------------------------