File: FindTinyXML.cmake

package info (click to toggle)
robot-testing-framework 2.0.1%2Bds1-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 1,764 kB
  • sloc: cpp: 7,408; ansic: 4,493; ada: 200; perl: 160; python: 52; makefile: 35; ruby: 25; xml: 11
file content (40 lines) | stat: -rw-r--r-- 1,642 bytes parent folder | download | duplicates (3)
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
#.rst:
# FindTinyXML
# -----------
#
# Try to find the TinyXML library.
# Once done this will define the following variables::
#
#  TinyXML_FOUND         - System has TinyXML
#  TinyXML_INCLUDE_DIRS  - TinyXML include directory
#  TinyXML_LIBRARIES     - TinyXML libraries
#  TinyXML_DEFINITIONS   - Additional compiler flags for TinyXML
#  TinyXML_VERSION       - TinyXML version
#  TinyXML_MAJOR_VERSION - TinyXML major version
#  TinyXML_MINOR_VERSION - TinyXML minor version
#  TinyXML_PATCH_VERSION - TinyXML patch version

#=============================================================================
# Copyright 2012-2013 Istituto Italiano di Tecnologia (IIT)
#   Authors: Daniele E. Domenichelli <daniele.domenichelli@iit.it>
#
# Distributed under the OSI-approved BSD License (the "License");
# see accompanying file Copyright.txt for details.
#
# This software is distributed WITHOUT ANY WARRANTY; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the License for more information.
#=============================================================================
# (To distribute this file outside of YCM, substitute the full
#  License text for the above reference.)


include(StandardFindModule)
standard_find_module(TinyXML tinyxml
                     SKIP_CMAKE_CONFIG)

# Set package properties if FeatureSummary was included
if(COMMAND set_package_properties)
    set_package_properties(TinyXML PROPERTIES DESCRIPTION "A small, simple XML parser for the C++ language"
                                              URL "http://www.grinninglizard.com/tinyxml/index.html")
endif()