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:
authorJohnny Matthews <johnny.matthews@gmail.com>2005-11-23 17:53:51 +0300
committerJohnny Matthews <johnny.matthews@gmail.com>2005-11-23 17:53:51 +0300
commit936ed99cc624dc83dfa68c526f2ffaed1c32e65f (patch)
treebf7ebc5e788106972472399b3dc6cda1f576ece6 /SConstruct
parent16ec668047dca2af48bda7be55332d6596aba5ad (diff)
Adding libtiff for win32 build
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct4
1 files changed, 4 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index b09c4821eaf..732f3d393ec 100644
--- a/SConstruct
+++ b/SConstruct
@@ -421,6 +421,10 @@ elif sys.platform == 'win32':
jpeg_lib = ['libjpeg']
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 = []