pollymc/mmc_updater/depends/tinyxml/CMakeLists.txt

25 lines
275 B
CMake
Raw Normal View History

# TinyXML 1.0.1
project(tinyxml)
cmake_minimum_required(VERSION 2.6)
Add_definitions(-DTIXML_USE_STL)
set(SOURCES
tinystr.cpp
tinyxml.cpp
tinyxmlerror.cpp
tinyxmlparser.cpp
)
set(HEADERS
tinystr.h
tinyxml.h
)
add_library(tinyxml
${SOURCES}
${HEADERS}
)