projects
/
blender-staging.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aa3aaaa
)
==SConscript fix for cygwin==
author
Tom Musgrove <LetterRip@gmail.com>
Sun, 29 Jan 2006 22:58:58 +0000
(22:58 +0000)
committer
Tom Musgrove <LetterRip@gmail.com>
Sun, 29 Jan 2006 22:58:58 +0000
(22:58 +0000)
cygwin build environ was missing the path for libtiff
SConstruct
patch
|
blob
|
history
diff --git
a/SConstruct
b/SConstruct
index f9fef1f1a49cd89268f34756d51c9f222a241a93..6a9db9f68c51bca253d727ce601fb6b0acffc32d 100644
(file)
--- a/
SConstruct
+++ b/
SConstruct
@@
-334,6
+334,10
@@
elif sys.platform == 'cygwin':
jpeg_lib = ['jpeg']
jpeg_libpath = ['#../lib/windows/jpeg/lib']
jpeg_include = ['#../lib/windows/jpeg/include']
+ # Tiff Library information
+ tiff_lib = ['libtiff']
+ tiff_libpath = ['#../lib/windows/tiff/lib']
+ tiff_include = ['#../lib/windows/tiff/include']
# OpenGL library information
opengl_lib = ['opengl32', 'glu32']
opengl_static = []