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:
authorStefan Gartner <stefang@aon.at>2010-08-04 12:42:18 +0400
committerStefan Gartner <stefang@aon.at>2010-08-04 12:42:18 +0400
commitd50cc7826fe50e1e29a2501d2b70c75360a0534e (patch)
tree250abd6e693da3233f6c4bbdadc36d3fe86d5418 /source/blender/editors/space_image/Makefile
parent708ef646631af236f6a12faa0682f7ad3913d5e0 (diff)
== Makefiles ==
* add support for LCMS (disabled by default, set WITH_LCMS to true to enable it) * fixed typo that prevented TIFF support to be properly enabled * enable ray optimization by default (scons and cmake already did this) * fixed building with libsndfile on darwin (disabled by default) * quicktime: use audaspace headers from $(NAN_AUDASPACE)/include instead of intern * gameengine: add -DWITH_FFMPEG to compiler flags when building with ffmpeg support
Diffstat (limited to 'source/blender/editors/space_image/Makefile')
-rw-r--r--source/blender/editors/space_image/Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/source/blender/editors/space_image/Makefile b/source/blender/editors/space_image/Makefile
index cde31085d80..7267d1abb93 100644
--- a/source/blender/editors/space_image/Makefile
+++ b/source/blender/editors/space_image/Makefile
@@ -57,14 +57,20 @@ ifeq ($(WITH_OPENEXR), true)
CPPFLAGS += -DWITH_OPENEXR
endif
-ifeq ($(WHITH_TIFF), true)
+ifeq ($(WITH_TIFF), true)
CPPFLAGS += -DWITH_TIFF
endif
+ifeq ($(WITH_LCMS), true)
+ CPPFLAGS += -DWITH_LCMS
+ CPPFLAGS += -I$(BF_LCMS_INC)
+endif
+
ifeq ($(WHITH_CINEON), true)
CPPFLAGS += -DWITH_CINEON
endif
ifeq ($(WHITH_HDR), true)
CPPFLAGS += -DWITH_HDR
-endif \ No newline at end of file
+endif
+