Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/CMake
diff options
context:
space:
mode:
authorMatt Ebb <matt@mke3.net>2010-01-18 01:12:00 +0300
committerMatt Ebb <matt@mke3.net>2010-01-18 01:12:00 +0300
commit280df5dd470b02c40eb7254efcfea0d617a76075 (patch)
treec454247b994c5e7a369a9770a7f87fa1df37bd23 /CMake
parent9356b1b7ee99d86853589a51dfe89c490b7d2a57 (diff)
Fix linking cmake on non-windows platforms (ELSEIF -> ELSE ) :)
Diffstat (limited to 'CMake')
-rw-r--r--CMake/macros.cmake2
1 files changed, 1 insertions, 1 deletions
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)