Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 29, 2009, 11:35:54 PM (15 years ago)
Author:
rgrieder
Message:

This commit gets a little ugly, couldn't separate that anymore:

  • Renamed UseTolua.cmake to GenerateLuaBindings.cmake
  • Applied the macros for compiler flags, linker flags, header files and source groups Updated the whole build tree for that
  • Created real compiler config scripts (BuildConfigGCC.cmake and BuildConfigMSVC.cmake)
  • Large scale clean up in BuildConfig.cmake
  • You can now specify your own LibraryConfig and BuildConfig script via CMake Cache
  • Lots of small changes and fixes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/buildsystem2/src/tinyxml/CMakeLists.txt

    r2607 r2621  
    1 SET( TINYXML_SRC_FILES
     1SET(TINYXML++_FILES
     2  ticpp.h
     3  ticpprc.h
     4  tinystr.h
     5  tinyxml.h
     6
    27  ticpp.cpp
    38  tinystr.cpp
     
    611  tinyxmlparser.cpp
    712)
     13GENERATE_SOURCE_GROUPS(${TINYXML++_FILES})
    814
    915IF(MSVC)
    10   ADD_LIBRARY(tinyxml_orxonox STATIC ${TINYXML_SRC_FILES})
     16  ADD_LIBRARY(tinyxml++_orxonox STATIC ${TINYXML++_FILES})
    1117ELSE(MSVC)
    12   ADD_LIBRARY(tinyxml_orxonox SHARED ${TINYXML_SRC_FILES})
     18  ADD_LIBRARY(tinyxml++_orxonox SHARED ${TINYXML++_FILES})
    1319ENDIF(MSVC)
    1420
    1521IF (NOT WIN32)
    16   INSTALL(TARGETS tinyxml_orxonox LIBRARY DESTINATION lib)
     22  INSTALL(TARGETS tinyxml++_orxonox LIBRARY DESTINATION lib)
    1723ENDIF (NOT WIN32)
Note: See TracChangeset for help on using the changeset viewer.