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/cpptcl/CMakeLists.txt

    r2622 r2624  
    1616IF(MSVC)
    1717  ADD_LIBRARY(cpptcl_orxonox STATIC ${CPPTCL_FILES})
    18 ELSE(MSVC)
     18ELSE()
    1919  ADD_LIBRARY(cpptcl_orxonox SHARED ${CPPTCL_FILES})
    20 ENDIF(MSVC)
     20ENDIF()
    2121
    2222TARGET_LINK_LIBRARIES(cpptcl_orxonox
     
    2424)
    2525
    26 IF (NOT WIN32)
     26IF(NOT WIN32)
    2727  INSTALL(TARGETS cpptcl_orxonox LIBRARY DESTINATION lib)
    28 ENDIF (NOT WIN32)
     28ENDIF()
Note: See TracChangeset for help on using the changeset viewer.