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/BuildConfigMSVC.cmake

    r2621 r2624  
    5050  REMOVE_COMPILER_FLAGS("-W1 -W2 -W3" CACHE)
    5151  ADD_COMPILER_FLAGS   ("-W4" CACHE)
    52 ELSE(EXTRA_WARNINGS)
     52ELSE()
    5353  REMOVE_COMPILER_FLAGS("-W1 -W2 -W4" CACHE)
    5454  ADD_COMPILER_FLAGS   ("-W3" CACHE)
    55 ENDIF(EXTRA_WARNINGS)
     55ENDIF()
    5656
    5757# Overwrite CMake default flags here.
Note: See TracChangeset for help on using the changeset viewer.