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:
authorNathan Letwory <nathan@letworyinteractive.com>2006-02-06 15:47:11 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2006-02-06 15:47:11 +0300
commit43c95ee9f28f241f505517ffa9e41da589cb4a2f (patch)
treec6e1d043d8ea3f96e8050760eee797f5acc49c29 /SConstruct
parentbbcfb14afafed684c552d35f081bacbaa5d1ad3d (diff)
==SCons==
+ Add python24.dll to list of needed dlls for install
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct7
1 files changed, 4 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index 4c6745e2b48..14bf6d032d7 100644
--- a/SConstruct
+++ b/SConstruct
@@ -291,9 +291,10 @@ allinstall = [blenderinstall, dotblenderinstall, scriptinstall, plugininstall, t
if env['OURPLATFORM'] == 'win32-vc':
windlls = env.Install(dir=env['BF_INSTALLDIR'], source = ['#../lib/windows/gettext/lib/gnu_gettext.dll',
- '#../lib/windows/png/lib/libpng.dll',
- '#../lib/windows/sdl/lib/SDL.dll',
- '#../lib/windows/zlib/lib/zlib.dll'])
+ '#../lib/windows/png/lib/libpng.dll',
+ '#../lib/windows/python/lib/python24.dll',
+ '#../lib/windows/sdl/lib/SDL.dll',
+ '#../lib/windows/zlib/lib/zlib.dll'])
allinstall += windlls
installtarget = env.Alias('install', allinstall)