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:
authorSimon Clitherow <aphex@nildram.co.uk>2007-05-28 15:11:15 +0400
committerSimon Clitherow <aphex@nildram.co.uk>2007-05-28 15:11:15 +0400
commit0ba63005b311180149335125de9d61785d81d8ea (patch)
tree0f79c789ce7b690b2df605d001051bfae6d23f01 /SConstruct
parent2d85ed24a385ea2a59224e9aac61481da30045fd (diff)
Copying python25.zip to install folders for win32.
Also, nsis installer now copies plugin include headers.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct14
1 files changed, 11 insertions, 3 deletions
diff --git a/SConstruct b/SConstruct
index 6fca7d58528..2a8adac2338 100644
--- a/SConstruct
+++ b/SConstruct
@@ -285,16 +285,24 @@ def NSIS_Installer():
Exit()
install_base_dir = os.getcwd() + "\\"
+
+ if not os.path.exists(install_base_dir+env['BF_INSTALLDIR']+'/plugins/include'):
+ os.mkdir(install_base_dir+env['BF_INSTALLDIR']+'/plugins/include')
+
+ for f in glob.glob('source/blender/blenpluginapi/*.h'):
+ shutil.copy(f,install_base_dir+env['BF_INSTALLDIR']+'/plugins/include')
+ shutil.copy('source/blender/blenpluginapi/plugin.def',install_base_dir+env['BF_INSTALLDIR']+'/plugins/include/')
+
os.chdir("release")
v = open("VERSION")
- version = v.read()[:-1]
+ version = v.read()[:-1]
shortver = version.split('.')[0] + version.split('.')[1]
v.close()
#### change to suit install dir ####
inst_dir = install_base_dir + env['BF_INSTALLDIR']
-
+
os.chdir("windows/installer")
ns = open("00.sconsblender.nsi","r")
@@ -591,7 +599,7 @@ 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',
-# '#release/windows/extra/python24.zip',
+ '#release/windows/extra/python25.zip',
# '#release/windows/extra/zlib.pyd',
'${LCGDIR}/sdl/lib/SDL.dll',
'${LCGDIR}/zlib/lib/zlib.dll',