]> git.proxmox.com Git - libgit2.git/blob - cmake/FindPCRE2.cmake
Update changelog for 1.5.0+ds-3 release
[libgit2.git] / cmake / FindPCRE2.cmake
1 # Copyright (C) 2007-2009 LuaDist.
2 # Created by Peter Kapec <kapecp@gmail.com>
3 # Redistribution and use of this file is allowed according to the terms of the MIT license.
4 # For details see the COPYRIGHT file distributed with LuaDist.
5 # Note:
6 # Searching headers and libraries is very simple and is NOT as powerful as scripts
7 # distributed with CMake, because LuaDist defines directories to search for.
8 # Everyone is encouraged to contact the author with improvements. Maybe this file
9 # becomes part of CMake distribution sometimes.
10
11 # - Find pcre
12 # Find the native PCRE2 headers and libraries.
13 #
14 # PCRE2_INCLUDE_DIRS - where to find pcre.h, etc.
15 # PCRE2_LIBRARIES - List of libraries when using pcre.
16 # PCRE2_FOUND - True if pcre found.
17
18 # Look for the header file.
19 find_path(PCRE2_INCLUDE_DIR NAMES pcre2.h)
20
21 # Look for the library.
22 find_library(PCRE2_LIBRARY NAMES pcre2-8)
23
24 # Handle the QUIETLY and REQUIRED arguments and set PCRE2_FOUND to TRUE if all listed variables are TRUE.
25 include(FindPackageHandleStandardArgs)
26 find_package_handle_standard_args(PCRE2 DEFAULT_MSG PCRE2_LIBRARY PCRE2_INCLUDE_DIR)
27
28 # Copy the results to the output variables.
29 if(PCRE2_FOUND)
30 set(PCRE2_LIBRARIES ${PCRE2_LIBRARY})
31 set(PCRE2_INCLUDE_DIRS ${PCRE2_INCLUDE_DIR})
32 else(PCRE2_FOUND)
33 set(PCRE2_LIBRARIES)
34 set(PCRE2_INCLUDE_DIRS)
35 endif()
36
37 mark_as_advanced(PCRE2_INCLUDE_DIRS PCRE2_LIBRARIES)