2015-03-22 15:46:53 -04:00
|
|
|
# Find pcre using standard tools.
|
|
|
|
|
|
|
|
|
|
# The following will be set:
|
|
|
|
|
|
2019-02-16 11:32:52 -05:00
|
|
|
# PCRE_INCLUDE_DIR PCRE_LIBRARY PCRE_FOUND
|
2015-03-22 15:46:53 -04:00
|
|
|
|
|
|
|
|
find_path(PCRE_INCLUDE_DIR NAMES pcre.h)
|
|
|
|
|
find_library(PCRE_LIBRARY NAMES pcre)
|
|
|
|
|
|
|
|
|
|
# Properly pass QUIETLY and REQUIRED.
|
|
|
|
|
include(FindPackageHandleStandardArgs)
|
2019-02-16 11:32:52 -05:00
|
|
|
find_package_handle_standard_args(PCRE
|
|
|
|
|
DEFAULT_MSG
|
|
|
|
|
PCRE_INCLUDE_DIR
|
|
|
|
|
PCRE_LIBRARY)
|
2015-03-22 15:46:53 -04:00
|
|
|
|
|
|
|
|
mark_as_advanced(PCRE_INCLUDE_DIR PCRE_LIBRARY)
|