Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 30, 2009, 12:48:20 PM (15 years ago)
Author:
rgrieder
Message:

Replaced most of the ELSE(…) and ENDIF(…) with ELSE() and ENDIF(). Kept the shorter and the spreaded ones for better clarity since that's what it originally was thought for. But I can really pollute the code when having long conditions and lots of IFs.

File:
1 edited

Legend:

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

    r2621 r2624  
    1515IF(MSVC)
    1616  ADD_LIBRARY(tinyxml++_orxonox STATIC ${TINYXML++_FILES})
    17 ELSE(MSVC)
     17ELSE()
    1818  ADD_LIBRARY(tinyxml++_orxonox SHARED ${TINYXML++_FILES})
    19 ENDIF(MSVC)
     19ENDIF()
    2020
    21 IF (NOT WIN32)
     21IF(NOT WIN32)
    2222  INSTALL(TARGETS tinyxml++_orxonox LIBRARY DESTINATION lib)
    23 ENDIF (NOT WIN32)
     23ENDIF()
Note: See TracChangeset for help on using the changeset viewer.