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

    r2621 r2624  
    5454  IF(NOT IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/ceguilua/ceguilua-${CEGUI_VERSION})
    5555    MESSAGE(FATAL_ERROR "CEGUILua version not found in src folder. Update list of supported versions in LibraryConfig.cmake!")
    56   ENDIF(NOT IS_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/ceguilua/ceguilua-${CEGUI_VERSION})
     56  ENDIF()
    5757
    5858  INCLUDE_DIRECTORIES(ceguilua/ceguilua-${CEGUI_VERSION})
    5959  ADD_SUBDIRECTORY(ceguilua)
    60 ENDIF(CEGUILUA_USE_INTERNAL_LIBRARY)
     60ENDIF()
    6161
    6262ADD_SUBDIRECTORY(cpptcl)
Note: See TracChangeset for help on using the changeset viewer.