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:
authorChris Want <cwant@ualberta.ca>2006-12-18 04:22:38 +0300
committerChris Want <cwant@ualberta.ca>2006-12-18 04:22:38 +0300
commit26a7d5fe6b98c22c7ce17ab8c629bcf2be1e4b9a (patch)
tree1368c455260f9568be08c0dc17fb2337782557af /CMakeLists.txt
parentd1c9de7cd6656bb56b4047f6532ca235bfc990be (diff)
The OpenEXR include path needed to be a bit more elaborate... oddly
cmake always says OPENEXR_INC not found despite the fact that I have the headers and it finds them correctly during building. <digression> There seems to be some conflict between setting, configuring as an option, and autofinding files for some of the dependencies, and I don't know how to resolve this. </digression>
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r--CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b273cfda904..e1f585fcc74 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -328,7 +328,7 @@ IF(APPLE)
SET(FREETYPE_LIB freetype)
SET(OPENEXR ${LIBDIR}/openexr)
- SET(OPENEXR_INC ${OPENEXR}/include/OpenEXR)
+ SET(OPENEXR_INC ${OPENEXR}/include/OpenEXR ${OPENEXR}/include)
IF(CMAKE_OSX_ARCHITECTURES MATCHES i386)
SET(OPENEXR_LIB Iex Half IlmImf Imath IlmThread)
ELSE(CMAKE_OSX_ARCHITECTURES MATCHES i386)