Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/FICN/src/tinyxml/CMakeLists.txt @ 739

Last change on this file since 739 was 739, checked in by landauf, 16 years ago

added TiCPP:

"'TiCPP' is short for the official name TinyXML++. It is a completely new interface to TinyXML that uses MANY of the C++ strengths. Templates, exceptions, and much better error handling."

website: http://code.google.com/p/ticpp/

File size: 259 bytes
Line 
1PROJECT(Orxonox)
2
3INCLUDE_DIRECTORIES(.)
4
5SET (SRC_FILES
6  tinystr.cc
7  tinyxml.cc
8  tinyxmlerror.cc
9  tinyxmlparser.cc
10  ticpp.cc
11)
12
13IF(WIN32)
14  ADD_LIBRARY(xml ${SRC_FILES})
15ELSE(WIN32)
16  ADD_LIBRARY(xml SHARED ${SRC_FILES})
17ENDIF(WIN32)
18
Note: See TracBrowser for help on using the repository browser.