blob: bb44f785af2e6052ac710579bc8e4f9afffeef59 [file] [log] [blame]
Radek Krejci54579462019-04-30 12:47:06 +02001# - 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 Vasko57f8de62021-06-09 11:43:12 +02007include(FindPackageHandleStandardArgs)
Radek Krejci54579462019-04-30 12:47:06 +02008
Michal Vasko57f8de62021-06-09 11:43:12 +02009if(PCRE2_LIBRARIES AND PCRE2_INCLUDE_DIRS)
10 # in cache already
11 set(PCRE2_FOUND TRUE)
12else()
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 Krejci54579462019-04-30 12:47:06 +020023
Michal Vasko57f8de62021-06-09 11:43:12 +020024 # Look for the library.
aPiecek0f583612023-05-30 11:28:36 +020025 if (WIN32 AND "${CMAKE_BUILD_TYPE}" STREQUAL "Debug")
26 # For the Debug build, the pcre2 library is called pcre2-8d. The Release build should be pcre2-8.
27 find_library(PCRE2_LIBRARY pcre2-8d)
28 else()
29 find_library(PCRE2_LIBRARY
30 NAMES
31 libpcre2.a
32 pcre2-8
33 PATHS
34 /usr/lib
35 /usr/lib64
36 /usr/local/lib
37 /usr/local/lib64
38 /opt/local/lib
39 /sw/lib
40 ${CMAKE_LIBRARY_PATH}
41 ${CMAKE_INSTALL_PREFIX}/lib)
42 endif()
Radek Krejci54579462019-04-30 12:47:06 +020043
Michal Vasko75518cf2021-06-10 16:07:12 +020044 if(PCRE2_INCLUDE_DIR AND PCRE2_LIBRARY)
45 # learn pcre2 version
46 file(STRINGS ${PCRE2_INCLUDE_DIR}/pcre2.h PCRE2_VERSION_MAJOR
47 REGEX "#define[ ]+PCRE2_MAJOR[ ]+[0-9]+")
48 string(REGEX MATCH " [0-9]+" PCRE2_VERSION_MAJOR ${PCRE2_VERSION_MAJOR})
49 string(STRIP "${PCRE2_VERSION_MAJOR}" PCRE2_VERSION_MAJOR)
50
51 file(STRINGS ${PCRE2_INCLUDE_DIR}/pcre2.h PCRE2_VERSION_MINOR
52 REGEX "#define[ ]+PCRE2_MINOR[ ]+[0-9]+")
53 string(REGEX MATCH " [0-9]+" PCRE2_VERSION_MINOR ${PCRE2_VERSION_MINOR})
54 string(STRIP "${PCRE2_VERSION_MINOR}" PCRE2_VERSION_MINOR)
55
56 set(PCRE2_VERSION ${PCRE2_VERSION_MAJOR}.${PCRE2_VERSION_MINOR})
Michal Vasko57f8de62021-06-09 11:43:12 +020057 endif()
Radek Krejcid9e68c42019-05-31 16:26:26 +020058
Michal Vasko57f8de62021-06-09 11:43:12 +020059 set(PCRE2_INCLUDE_DIRS ${PCRE2_INCLUDE_DIR})
60 set(PCRE2_LIBRARIES ${PCRE2_LIBRARY})
61 mark_as_advanced(PCRE2_INCLUDE_DIRS PCRE2_LIBRARIES)
Radek Krejci54579462019-04-30 12:47:06 +020062
Michal Vasko57f8de62021-06-09 11:43:12 +020063 # Handle the QUIETLY and REQUIRED arguments and set PCRE2_FOUND to TRUE if all listed variables are TRUE.
64 find_package_handle_standard_args(PCRE2 FOUND_VAR PCRE2_FOUND
65 REQUIRED_VARS PCRE2_LIBRARY PCRE2_INCLUDE_DIR
66 VERSION_VAR PCRE2_VERSION)
67endif()