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>2014-09-08 19:43:25 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-09-08 19:44:41 +0400
commitae99764385863dcf7e4d8bb17750330f4b68f3b1 (patch)
tree68a59039be161b10d8cbbb680199fd9f0b8be2c6 /source/blender/blenkernel
parent8837bb297ba7f77c7f1d127467ba770726b302e7 (diff)
CMake: Add missing WITH_OPENIMAGEIO define
Diffstat (limited to 'source/blender/blenkernel')
-rw-r--r--source/blender/blenkernel/CMakeLists.txt10
1 files changed, 7 insertions, 3 deletions
diff --git a/source/blender/blenkernel/CMakeLists.txt b/source/blender/blenkernel/CMakeLists.txt
index 0caf7d11c55..fd201fed9e7 100644
--- a/source/blender/blenkernel/CMakeLists.txt
+++ b/source/blender/blenkernel/CMakeLists.txt
@@ -78,8 +78,8 @@ set(SRC
intern/colortools.c
intern/constraint.c
intern/context.c
- intern/crazyspace.c
- intern/curve.c
+ intern/crazyspace.c
+ intern/curve.c
intern/customdata.c
intern/customdata_file.c
intern/deform.c
@@ -192,7 +192,7 @@ set(SRC
BKE_colortools.h
BKE_constraint.h
BKE_context.h
- BKE_crazyspace.h
+ BKE_crazyspace.h
BKE_curve.h
BKE_customdata.h
BKE_customdata_file.h
@@ -307,6 +307,10 @@ if(WITH_IMAGE_TIFF)
add_definitions(-DWITH_TIFF)
endif()
+if(WITH_OPENIMAGEIO)
+ add_definitions(-DWITH_OPENIMAGEIO)
+endif()
+
if(WITH_IMAGE_OPENJPEG)
add_definitions(-DWITH_OPENJPEG)
endif()