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

    r2623 r2624  
    2121  IF(_compare_result EQUAL 1)
    2222    BREAK() # _version > CEGUI_VERSION
    23   ENDIF(_compare_result EQUAL 1)
     23  ENDIF()
    2424  ADD_SUBDIRECTORY(ceguilua-${_version})
    2525ENDFOREACH(_version)
     
    5353)
    5454
    55 IF (NOT WIN32)
     55IF(NOT WIN32)
    5656  INSTALL(TARGETS ceguilua_orxonox LIBRARY DESTINATION lib)
    57 ENDIF (NOT WIN32)
     57ENDIF()
Note: See TracChangeset for help on using the changeset viewer.