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-11-24 09:08:05 +0300
committerNathan Letwory <nathan@letworyinteractive.com>2006-11-24 09:08:05 +0300
commit48b07b4822ef96e2389ab4369a1c180471230369 (patch)
tree5ecf1975e753acc82f4dde741c3d78a1fda098ec /SConstruct
parent9f5713df2f16905c6ae96299df1c517b83aaa486 (diff)
==SCons==
* link against debug library of python on win32
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct5
1 files changed, 4 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct
index f674e0e0bd7..813942c29e5 100644
--- a/SConstruct
+++ b/SConstruct
@@ -358,12 +358,15 @@ allinstall = [blenderinstall, dotblenderinstall, scriptinstall, plugininstall, t
if env['OURPLATFORM'] in ('win32-vc', 'win32-mingw'):
dllsources = ['${LCGDIR}/gettext/lib/gnu_gettext.dll',
'${LCGDIR}/png/lib/libpng.dll',
- '${LCGDIR}/python/lib/python24.dll',
'#release/windows/extra/python24.zip',
'#release/windows/extra/zlib.pyd',
'${LCGDIR}/sdl/lib/SDL.dll',
'${LCGDIR}/zlib/lib/zlib.dll',
'${LCGDIR}/tiff/lib/libtiff.dll']
+ if env['BF_DEBUG']:
+ dllsources.append('${LCGDIR}/python/lib/python24_d.dll')
+ else:
+ dllsources.append('${LCGDIR}/python/lib/python24.dll')
if env['OURPLATFORM'] == 'win32-mingw':
dllsources += ['${LCGDIR}/pthreads/lib/pthreadGC2.dll']
else: