commit | d9e68c47e374242df58c17daf5f5c43837a15313 | [log] [tgz] |
---|---|---|
author | Radek Krejci <rkrejci@cesnet.cz> | Fri May 31 16:26:26 2019 +0200 |
committer | Radek Krejci <rkrejci@cesnet.cz> | Fri May 31 16:26:26 2019 +0200 |
tree | 671e3ea1df31b2455d0a682aa686fa89863f3c7a | |
parent | 5819f7cec96cef85e2194a7bcc002d5543893c11 [diff] [blame] |
build CHANGE require libpcre2 version 10.30 or greater Due to use of PCRE2_ENDANCHORED macro, we need the specific version of this library.
diff --git a/CMakeLists.txt b/CMakeLists.txt index c3d9160..c592d44 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -282,7 +282,7 @@ # find PCRE2 library unset(PCRE2_LIBRARY CACHE) -find_package(PCRE2 REQUIRED) +find_package(PCRE2 10.30 REQUIRED) include_directories(${PCRE2_INCLUDE_DIRS}) target_link_libraries(yang ${PCRE2_LIBRARIES})