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>2012-06-05 10:18:31 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-06-05 10:18:31 +0400
commit06556a92e5ba0b0d541792e1ac2b84eaf59998b8 (patch)
treee3c28d5a808bd37a72066043dd81e6426f6dceb4 /CMakeLists.txt
parentd24a27ca3643e8f9b7bcc5123e56077df9afe005 (diff)
correction to own change with cmake, oiio linking.
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 3538c64f1e9..bd038415772 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -653,10 +653,10 @@ if(UNIX AND NOT APPLE)
set(OPENIMAGEIO_DEFINITIONS)
if(WITH_IMAGE_TIFF)
- set(OPENIMAGEIO_LIBRARIES "${OPENIMAGEIO_LIBRARIES} ${TIFF_LIBRARY}")
+ list(APPEND OPENIMAGEIO_LIBRARIES "${TIFF_LIBRARY}")
endif()
if(WITH_IMAGE_OPENEXR)
- set(OPENIMAGEIO_LIBRARIES "${OPENIMAGEIO_LIBRARIES} ${OPENEXR_LIBRARIES}")
+ list(APPEND OPENIMAGEIO_LIBRARIES "${OPENEXR_LIBRARIES}")
endif()
if(NOT OPENIMAGEIO_FOUND)