1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
# cerfConfig.cmake
# ----------------
#
# cerf cmake module.
# This module sets the following variables in your project:
#
# ::
#
# cerf_FOUND - true if cerf and all required components found on the system
#
#
# Available components: shared static
#
# ::
#
# shared - search for only shared library
# static - search for only static library
# C - search for C library only
# CXX - search for CXX library only
#
#
# Exported targets:
#
# ::
#
# If cerf is found, this module defines the following :prop_tgt:`IMPORTED`
# targets. Target is shared _or_ static, so, for both, use separate, not
# overlapping, installations. ::
#
# cerf::cerf - the main cerf library with header attached.
# cerf::cerfcpp - the C++ cerf library
#
#
# Suggested usage:
#
# ::
#
# find_package(cerf)
# find_package(cerf 1.17.0 EXACT CONFIG REQUIRED COMPONENTS shared C)
#
#
# The following variables can be set to guide the search for this package:
#
# ::
#
# cerf_DIR - CMake variable, set to directory containing this Config file
# CMAKE_PREFIX_PATH - CMake variable, set to root directory of this package
# PATH - environment variable, set to bin directory of this package
# CMAKE_DISABLE_FIND_PACKAGE_cerf - CMake variable, disables
# find_package(cerf) when not REQUIRED, perhaps to force internal build
@PACKAGE_INIT@
set(PN cerf)
set (_valid_components
static
shared
C
CXX
)
# check library style component
if(@BUILD_SHARED_LIBS@)
set(${PN}_shared_FOUND 1)
else()
set(${PN}_static_FOUND 1)
endif()
list(FIND ${PN}_FIND_COMPONENTS "shared" _seek_shared)
list(FIND ${PN}_FIND_COMPONENTS "static" _seek_static)
# check library language component
set(targets)
if (@CERF_C@)
set(${PN}_C_FOUND 1)
list(APPEND targets "cerf")
endif()
if(@CERF_CPP@)
set(${PN}_CXX_FOUND 1)
list(APPEND targets "cerfcpp")
endif()
list(FIND ${PN}_FIND_COMPONENTS "C" _seek_C)
list(FIND ${PN}_FIND_COMPONENTS "CXX" _seek_CXX)
check_required_components(${PN})
#-----------------------------------------------------------------------------
# Don't include targets if this file is being picked up by another
# project which has already built this as a subproject
#-----------------------------------------------------------------------------
include("${CMAKE_CURRENT_LIST_DIR}/${PN}Targets.cmake")
foreach(_target ${targets})
if(NOT TARGET ${PN}::${_target})
get_property(_loc TARGET ${PN}::${_target} PROPERTY LOCATION)
get_property(_ill TARGET ${PN}::${_target} PROPERTY INTERFACE_LINK_LIBRARIES)
get_property(_id TARGET ${PN}::${_target} PROPERTY INCLUDE_DIRECTORIES)
get_property(_iid TARGET ${PN}::${_target} PROPERTY INTERFACE_INCLUDE_DIRECTORIES)
message(STATUS " -- cerfConfig cerf::${_target} location=${_loc} interface_link_libs=${_ill} "
"include_dirs=${_id} interface_include_dirs=${_iid}")
else()
message(STATUS " -- cerfConfig skip cerf::${_target}")
endif()
endforeach()
|