Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 30, 2009, 12:48:20 PM (16 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/cmake/HandleLibraryTypes.cmake

    r2613 r2624  
    3434      PARENT_SCOPE
    3535    )
    36   ELSE(${_name}_LIBRARY_DEBUG AND ${_name}_LIBRARY_OPTIMIZED)
     36  ELSE()
    3737    SET(${_name}_LIBRARY
    3838      ${${_name}_LIBRARY_OPTIMIZED} ${ARGN}
    3939      PARENT_SCOPE
    4040     )
    41   ENDIF(${_name}_LIBRARY_DEBUG AND ${_name}_LIBRARY_OPTIMIZED)
     41  ENDIF()
    4242ENDFUNCTION(HANDLE_LIBRARY_TYPES)
Note: See TracChangeset for help on using the changeset viewer.