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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-06-15 16:09:02 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-06-15 16:09:02 +0400
commit4f3936083a67cd106124dd0392c5ef4a4dcdad7b (patch)
tree8083d6dc46fe6c88c707f3c0abdbee14505d7385 /build_files/cmake/macros.cmake
parent2164847928eeadaf754a08e17b030ee93f3815aa (diff)
replace own inline cmake include search logic for a typical FindXXX.cmake module.
Diffstat (limited to 'build_files/cmake/macros.cmake')
-rw-r--r--build_files/cmake/macros.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/cmake/macros.cmake b/build_files/cmake/macros.cmake
index 8189769cbbc..a862034c002 100644
--- a/build_files/cmake/macros.cmake
+++ b/build_files/cmake/macros.cmake
@@ -205,13 +205,13 @@ macro(setup_liblinks
endif()
if(WITH_IMAGE_OPENEXR)
if(WIN32 AND NOT UNIX)
- foreach(_LOOP_VAR ${OPENEXR_LIB})
+ foreach(_LOOP_VAR ${OPENEXR_LIBRARIES})
target_link_libraries(${target} debug ${_LOOP_VAR}_d)
target_link_libraries(${target} optimized ${_LOOP_VAR})
endforeach()
unset(_LOOP_VAR)
else()
- target_link_libraries(${target} ${OPENEXR_LIB})
+ target_link_libraries(${target} ${OPENEXR_LIBRARIES})
endif()
endif()
if(WITH_IMAGE_OPENJPEG AND UNIX AND NOT APPLE)