From a1919e6db4e20f1ab16646d3cbb273f569af23e1 Mon Sep 17 00:00:00 2001 From: Kent Mein Date: Fri, 11 Mar 2005 20:16:14 +0000 Subject: Gernot Ziegler's patch to add OpenEXR support to blender. To enable it you will need to download OpenEXR and install it. For the Makefiles you will need to set WITH_OPENEXR=true and set NAN_OPENEXR to point to where OpenEXR is installed. For scons you'll need to remove config.opts to get the new options so you can enable OpenEXR, I was not able to get blender to link with scons so the scons stuff may need to be tweaked a little but I think it should work. For other platform managers The OpenEXR stuff is similar to QUICKTIME you need to define WITH_OPENEXR and setup the library stuff and as you'll notice in this commit there are two extra files. Kent --- source/Makefile | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source/Makefile') diff --git a/source/Makefile b/source/Makefile index 60c8ede03c1..ed466332ec9 100644 --- a/source/Makefile +++ b/source/Makefile @@ -148,6 +148,12 @@ endif COMLIB += $(NAN_GUARDEDALLOC)/lib/libguardedalloc.a COMLIB += $(NAN_BMFONT)/lib/$(DEBUG_DIR)libbmfont.a COMLIB += $(NAN_PNG)/lib/libpng.a + ifeq ($(WITH_OPENEXR), true) + COMLIB += $(NAN_OPENEXR)/lib/libIlmImf.a + COMLIB += $(NAN_OPENEXR)/lib/libHalf.a + COMLIB += $(NAN_OPENEXR)/lib/libIex.a + COMLIB += $(NAN_OPENEXR)/lib/libImath.a + endif COMLIB += $(OCGDIR)/blender/yafray/$(DEBUG_DIR)libyafrayexport.a COMLIB += $(OCGDIR)/blender/blenlib/$(DEBUG_DIR)libblenlib.a ifeq ($(WITH_QUICKTIME), true) -- cgit v1.2.3