File: DARTFindtinyxml2.cmake

package info (click to toggle)
dart 6.12.1%2Bdfsg4-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 57,000 kB
  • sloc: cpp: 269,461; python: 3,911; xml: 1,273; sh: 404; makefile: 30
file content (27 lines) | stat: -rw-r--r-- 884 bytes parent folder | download
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
# 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_package(tinyxml2 QUIET CONFIG)
if(tinyxml2_FOUND)
  set(TINYXML2_FOUND        ${tinyxml2_FOUND})
  set(TINYXML2_INCLUDE_DIRS ${tinyxml2_INCLUDE_DIRS})
  set(TINYXML2_LIBRARIES    ${tinyxml2_LIBRARIES})
  set(TINYXML2_VERSION      ${tinyxml2_VERSION})
endif()

if(NOT tinyxml2_FOUND)
  find_package(tinyxml2 QUIET MODULE)
endif()

if((TINYXML2_FOUND OR tinyxml2_FOUND) AND NOT TARGET tinyxml2::tinyxml2)
  add_library(tinyxml2::tinyxml2 INTERFACE IMPORTED)
  set_target_properties(tinyxml2::tinyxml2 PROPERTIES
    INTERFACE_INCLUDE_DIRECTORIES "${TINYXML2_INCLUDE_DIRS}"
    INTERFACE_LINK_LIBRARIES "${TINYXML2_LIBRARIES}"
  )
endif()