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:
authorDalai Felinto <dfelinto@gmail.com>2013-10-11 20:38:04 +0400
committerDalai Felinto <dfelinto@gmail.com>2013-10-11 20:38:04 +0400
commit029f4b9767d149f10317d060fcc521b8b994c6d5 (patch)
treec051b63f159c3eaafab072ded54dfbc478e5cfed /source/blender/imbuf/intern/oiio
parentce52dc2900b9270fe8b73ca9cf07a3f428d873b7 (diff)
adding WITH_IMAGE_OPENIMAGEIO and removing the PSD build option
As per Brecht van Lommel's suggestion.
Diffstat (limited to 'source/blender/imbuf/intern/oiio')
-rw-r--r--source/blender/imbuf/intern/oiio/CMakeLists.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/imbuf/intern/oiio/CMakeLists.txt b/source/blender/imbuf/intern/oiio/CMakeLists.txt
index f5ee5eb6589..5fb8f11602e 100644
--- a/source/blender/imbuf/intern/oiio/CMakeLists.txt
+++ b/source/blender/imbuf/intern/oiio/CMakeLists.txt
@@ -44,11 +44,11 @@ set(SRC
openimageio_api.cpp
)
-if(WITH_IMAGE_PSD)
+if(WITH_OPENIMAGEIO)
list(APPEND INC_SYS
${OPENIMAGEIO_INCLUDE_DIRS}
)
- add_definitions(-DWITH_PSD)
+ add_definitions(-DWITH_OPENIMAGEIO)
endif()
blender_add_lib(bf_imbuf_openimageio "${SRC}" "${INC}" "${INC_SYS}")