Fix linking cmake on non-windows platforms (ELSEIF -> ELSE ) :)

This commit is contained in:
Matt Ebb 2010-01-17 22:12:00 +00:00
parent 9356b1b7ee
commit 280df5dd47
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ MACRO(SETUP_LIBLINKS
TARGET_LINK_LIBRARIES(${target} debug ${loop_var}_d)
TARGET_LINK_LIBRARIES(${target} optimized ${loop_var})
ENDFOREACH(loop_var)
ELSEIF(WIN32)
ELSE(WIN32)
TARGET_LINK_LIBRARIES(${target} ${OPENEXR_LIB})
ENDIF(WIN32)
ENDIF(WITH_OPENEXR)