Consider pcre debug suffix for Windows (#5429)
I'm suggesting this patch from the conan recipe: https://github.com/conan-io/conan-center-index/blob/afcf3ba/recipes/cppcheck/all/patches/0003-pcre-debuglib-name.patch
This commit is contained in:
parent
18ee859737
commit
a87e9e1042
|
@ -31,7 +31,7 @@ endif()
|
||||||
|
|
||||||
if (HAVE_RULES)
|
if (HAVE_RULES)
|
||||||
find_path(PCRE_INCLUDE pcre.h)
|
find_path(PCRE_INCLUDE pcre.h)
|
||||||
find_library(PCRE_LIBRARY pcre)
|
find_library(PCRE_LIBRARY NAMES pcre pcred)
|
||||||
if (NOT PCRE_LIBRARY OR NOT PCRE_INCLUDE)
|
if (NOT PCRE_LIBRARY OR NOT PCRE_INCLUDE)
|
||||||
message(FATAL_ERROR "pcre dependency for RULES has not been found")
|
message(FATAL_ERROR "pcre dependency for RULES has not been found")
|
||||||
endif()
|
endif()
|
||||||
|
|
Loading…
Reference in New Issue