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
|
#.rst:
# FindSubunit
# -----------
#
# Find Subunit
#
# Find Subunit headers and libraries.
#
# ::
#
# SUBUNIT_FOUND - True if Subunit found.
# SUBUNIT_INCLUDE_DIRS - Where to find subunit/child.h.
# SUBUNIT_LIBRARIES - List of libraries when using Subunit.
# SUBUNIT_VERSION_STRING - The version of Subunit found.
#=============================================================================
# Copyright 2018 Silvio Clecio <silvioprog@gmail.com>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
# as published by the Free Software Foundation;
# version 2.1 of the License.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU GENERAL PUBLIC LICENSE for more details.
#
# You should have received a copy of the GNU General Public
# License along with this library. If not, see <http://www.gnu.org/licenses/>.
#=============================================================================
# Fri Jan 19 22:27:51 -03 2018
find_package(PkgConfig QUIET)
pkg_check_modules(PC_SUBUNIT QUIET libsubunit)
set(SUBUNIT_VERSION_STRING "${PC_SUBUNIT_VERSION}")
find_path(SUBUNIT_INCLUDE_DIR
NAMES child.h
HINTS ${PC_SUBUNIT_INCLUDEDIR} ${PC_SUBUNIT_INCLUDE_DIRS}
PATH_SUFFIXES subunit)
find_library(SUBUNIT_LIBRARY
NAMES subunit libsubunit
HINTS ${PC_SUBUNIT_LIBDIR} ${PC_SUBUNIT_LIBRARY_DIRS})
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(Subunit
REQUIRED_VARS SUBUNIT_LIBRARY SUBUNIT_INCLUDE_DIR
VERSION_VAR SUBUNIT_VERSION_STRING)
if (SUBUNIT_FOUND)
set(SUBUNIT_LIBRARIES ${SUBUNIT_LIBRARY})
set(SUBUNIT_INCLUDE_DIRS ${SUBUNIT_INCLUDE_DIR})
if (NOT TARGET Subunit::Subunit)
add_library(Subunit::Subunit UNKNOWN IMPORTED)
set_target_properties(Subunit::Subunit PROPERTIES
IMPORTED_LOCATION "${SUBUNIT_LIBRARY}"
INTERFACE_INCLUDE_DIRECTORIES "${SUBUNIT_INCLUDE_DIR}")
endif ()
endif ()
mark_as_advanced(SUBUNIT_INCLUDE_DIR SUBUNIT_LIBRARY)
|