From 280df5dd470b02c40eb7254efcfea0d617a76075 Mon Sep 17 00:00:00 2001 From: Matt Ebb Date: Sun, 17 Jan 2010 22:12:00 +0000 Subject: Fix linking cmake on non-windows platforms (ELSEIF -> ELSE ) :) --- CMake/macros.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'CMake') diff --git a/CMake/macros.cmake b/CMake/macros.cmake index 1e8fe391918..73458d7312e 100644 --- a/CMake/macros.cmake +++ b/CMake/macros.cmake @@ -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) -- cgit v1.2.3