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

    r2621 r2624  
    2929ELSEIF(UNIX)
    3030  ADD_SUBDIRECTORY(linux)
    31 ENDIF (WIN32)
     31ENDIF()
    3232
    3333GENERATE_SOURCE_GROUPS(${OIS_FILES})
     
    3636INCLUDE_DIRECTORIES(.)
    3737
    38 ADD_LIBRARY(ois_orxonox SHARED ${OIS_FILES} )
     38ADD_LIBRARY(ois_orxonox SHARED ${OIS_FILES})
    3939SET_TARGET_PROPERTIES(ois_orxonox PROPERTIES DEFINE_SYMBOL "OIS_NONCLIENT_BUILD")
    4040
    4141IF(WIN32)
    42   TARGET_LINK_LIBRARIES( ois_orxonox ${DIRECTX_LIBRARIES} )
    43 ENDIF(WIN32)
     42  TARGET_LINK_LIBRARIES(ois_orxonox ${DIRECTX_LIBRARIES})
     43ENDIF()
    4444
Note: See TracChangeset for help on using the changeset viewer.