527f3bb31c
The WrapPCRE2 package handles the PCRE2 packages that have targets, and reuse them. Change-Id: I24b0b51f507703cd8287f845f7e425f62dd2c3d6 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
21 lines
713 B
CMake
21 lines
713 B
CMake
include_guard(GLOBAL) # pragma once equivalent
|
|
|
|
find_package(PCRE2 CONFIG QUIET)
|
|
|
|
if(PCRE2_FOUND AND TARGET PCRE2::pcre2-16)
|
|
# Hunter case.
|
|
add_library(WrapPCRE2::WrapPCRE2 INTERFACE IMPORTED)
|
|
target_link_libraries(WrapPCRE2::WrapPCRE2 INTERFACE PCRE2::pcre2-16)
|
|
set(WrapPCRE2_FOUND TRUE)
|
|
else()
|
|
find_library(PCRE2_LIBRARIES NAMES pcre2-16)
|
|
find_path(PCRE2_INCLUDE_DIRS pcre2.h)
|
|
|
|
if (PCRE2_LIBRARIES AND PCRE2_INCLUDE_DIRS)
|
|
add_library(WrapPCRE2::WrapPCRE2 INTERFACE IMPORTED)
|
|
target_link_libraries(WrapPCRE2::WrapPCRE2 INTERFACE ${PCRE2_LIBRARIES})
|
|
target_include_directories(WrapPCRE2::WrapPCRE2 INTERFACE ${PCRE2_INCLUDE_DIRS})
|
|
set(WrapPCRE2_FOUND TRUE)
|
|
endif()
|
|
endif()
|