Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/buildsystem2/src/tinyxml/CMakeLists.txt @ 2607

Last change on this file since 2607 was 2607, checked in by rgrieder, 15 years ago

Forgot something else with TinyXML++.

  • Property svn:eol-style set to native
File size: 348 bytes
Line 
1SET( TINYXML_SRC_FILES
2  ticpp.cpp
3  tinystr.cpp
4  tinyxml.cpp
5  tinyxmlerror.cpp
6  tinyxmlparser.cpp
7)
8
9IF(MSVC)
10  ADD_LIBRARY(tinyxml_orxonox STATIC ${TINYXML_SRC_FILES})
11ELSE(MSVC)
12  ADD_LIBRARY(tinyxml_orxonox SHARED ${TINYXML_SRC_FILES})
13ENDIF(MSVC)
14
15IF (NOT WIN32)
16  INSTALL(TARGETS tinyxml_orxonox LIBRARY DESTINATION lib)
17ENDIF (NOT WIN32)
Note: See TracBrowser for help on using the repository browser.