Fix CMAKE_C_FLAGS setting
This commit is contained in:
parent
67764372eb
commit
4facdb9613
|
@ -69,6 +69,7 @@
|
||||||
# 2014-08-29 PH converted the file for PCRE2 (which has no C++).
|
# 2014-08-29 PH converted the file for PCRE2 (which has no C++).
|
||||||
# 2015-04-24 PH added support for PCRE2_DEBUG
|
# 2015-04-24 PH added support for PCRE2_DEBUG
|
||||||
# 2015-07-16 PH updated for new pcre2_find_bracket source module
|
# 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)
|
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_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
|
# external packages
|
||||||
FIND_PACKAGE( BZip2 )
|
FIND_PACKAGE( BZip2 )
|
||||||
|
|
|
@ -154,6 +154,9 @@ non-zero.
|
||||||
42. Fix two assertion fails in JIT. These issues were found by Karl Skomski
|
42. Fix two assertion fails in JIT. These issues were found by Karl Skomski
|
||||||
with a custom LLVM fuzzer.
|
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
|
Version 10.20 30-June-2015
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
Loading…
Reference in New Issue