Skip to content
Snippets Groups Projects
Commit 88b3ed79 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Added FindTinyXML2.cmake

parent cad08eea
No related branches found
No related tags found
No related merge requests found
# with uknowing courtesy:
# https://github.com/sainteos/tmxparser/blob/master/cmake/FindTinyXML2.cmake
# Copyright (c) 2014 Andrew Kelley
# This file is MIT licensed.
# See http://opensource.org/licenses/MIT
# TINYXML2_FOUND
# TINYXML2_INCLUDE_DIR
# TINYXML2_LIBRARIES
find_path(TINYXML2_INCLUDE_DIR NAMES tinyxml2.h)
find_library(TINYXML2_LIBRARIES NAMES tinyxml2)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(TINYXML2 DEFAULT_MSG TINYXML2_LIBRARIES TINYXML2_INCLUDE_DIR)
mark_as_advanced(TINYXML2_INCLUDE_DIR TINYXML2_LIBRARIES)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment