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
|
# Copyright (c) 2011-2021, The DART development contributors
# All rights reserved.
#
# The list of contributors can be found at:
# https://github.com/dartsim/dart/blob/master/LICENSE
#
# This file is provided under the "BSD-style" License
# Find TinyXML
#
# This sets the following variables:
# TinyXML_FOUND
# TinyXML_INCLUDE_DIRS
# TinyXML_LIBRARIES
# TinyXML_VERSION
find_package(PkgConfig QUIET)
# Check to see if pkgconfig is installed.
pkg_check_modules(PC_TinyXML tinyxml QUIET)
# Include directories
find_path(TinyXML_INCLUDE_DIRS
NAMES tinyxml.h
HINTS ${PC_TinyXML_INCLUDEDIR}
PATHS "${CMAKE_INSTALL_PREFIX}/include"
)
# Libraries
find_library(TinyXML_LIBRARIES NAMES tinyxml HINTS ${PC_TinyXML_LIBDIR})
# Version
set(TinyXML_VERSION ${PC_TinyXML_VERSION})
# Set (NAME)_FOUND if all the variables and the version are satisfied.
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(TinyXML
FAIL_MESSAGE DEFAULT_MSG
REQUIRED_VARS TinyXML_INCLUDE_DIRS TinyXML_LIBRARIES
VERSION_VAR TinyXML_VERSION
)
|