Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 1 | # - Find pcre |
| 2 | # Find the native PCRE2 headers and libraries. |
| 3 | # |
| 4 | # PCRE2_INCLUDE_DIRS - where to find pcre.h, etc. |
| 5 | # PCRE2_LIBRARIES - List of libraries when using pcre. |
| 6 | # PCRE2_FOUND - True if pcre found. |
Michal Vasko | 57f8de6 | 2021-06-09 11:43:12 +0200 | [diff] [blame^] | 7 | include(FindPackageHandleStandardArgs) |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 8 | |
Michal Vasko | 57f8de6 | 2021-06-09 11:43:12 +0200 | [diff] [blame^] | 9 | if(PCRE2_LIBRARIES AND PCRE2_INCLUDE_DIRS) |
| 10 | # in cache already |
| 11 | set(PCRE2_FOUND TRUE) |
| 12 | else() |
| 13 | find_path(PCRE2_INCLUDE_DIR |
| 14 | NAMES |
| 15 | pcre2.h |
| 16 | PATHS |
| 17 | /usr/include |
| 18 | /usr/local/include |
| 19 | /opt/local/include |
| 20 | /sw/include |
| 21 | ${CMAKE_INCLUDE_PATH} |
| 22 | ${CMAKE_INSTALL_PREFIX}/include) |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 23 | |
Michal Vasko | 57f8de6 | 2021-06-09 11:43:12 +0200 | [diff] [blame^] | 24 | # Look for the library. |
| 25 | find_library(PCRE2_LIBRARY |
| 26 | NAMES |
| 27 | libpcre2.a |
| 28 | pcre2-8 |
| 29 | PATHS |
| 30 | /usr/lib |
| 31 | /usr/lib64 |
| 32 | /usr/local/lib |
| 33 | /usr/local/lib64 |
| 34 | /opt/local/lib |
| 35 | /sw/lib |
| 36 | ${CMAKE_LIBRARY_PATH} |
| 37 | ${CMAKE_INSTALL_PREFIX}/lib) |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 38 | |
Michal Vasko | 57f8de6 | 2021-06-09 11:43:12 +0200 | [diff] [blame^] | 39 | if(PCRE2_LIBRARY) |
| 40 | # Check required version |
| 41 | execute_process(COMMAND pcre2-config --version OUTPUT_VARIABLE PCRE2_VERSION OUTPUT_STRIP_TRAILING_WHITESPACE) |
| 42 | endif() |
Radek Krejci | d9e68c4 | 2019-05-31 16:26:26 +0200 | [diff] [blame] | 43 | |
Michal Vasko | 57f8de6 | 2021-06-09 11:43:12 +0200 | [diff] [blame^] | 44 | set(PCRE2_INCLUDE_DIRS ${PCRE2_INCLUDE_DIR}) |
| 45 | set(PCRE2_LIBRARIES ${PCRE2_LIBRARY}) |
| 46 | mark_as_advanced(PCRE2_INCLUDE_DIRS PCRE2_LIBRARIES) |
Radek Krejci | 5457946 | 2019-04-30 12:47:06 +0200 | [diff] [blame] | 47 | |
Michal Vasko | 57f8de6 | 2021-06-09 11:43:12 +0200 | [diff] [blame^] | 48 | # Handle the QUIETLY and REQUIRED arguments and set PCRE2_FOUND to TRUE if all listed variables are TRUE. |
| 49 | find_package_handle_standard_args(PCRE2 FOUND_VAR PCRE2_FOUND |
| 50 | REQUIRED_VARS PCRE2_LIBRARY PCRE2_INCLUDE_DIR |
| 51 | VERSION_VAR PCRE2_VERSION) |
| 52 | endif() |