Mercurial > fife-parpg
view ext/SConscript @ 370:5ab78cd39534
* Updated win32 build files for the new November 2009 Win32 DevKit
* The old Win32 compile SDK 2008.1-r1 will NOT work with future revisions, starting with 3073
* For details, check this article that also contains the download links: http://fifengine.de/2009/11/16/new-fife-win32-devkit-available/
* Thanks to Cheesesucker for providing the installer version as well as for a bunch of smaller fixes to the build scripts
author | mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Mon, 16 Nov 2009 12:29:29 +0000 |
parents | fa33cda75471 |
children | 64738befdf3b |
line wrap: on
line source
import os, shutil from utils.util_scripts.path import path Import('env') curpath = str(path('.')) installpath = str((path('.') / path('install')).abspath()) print "======= FIFE EXTERNAL DEPENDENCY BUILD: GUICHAN =======" os.chdir(str(path('.') / path('guichan-0.8.1'))) os.system('./configure') os.system('make') os.system('make install prefix=%s' % installpath) print "======= FIFE EXTERNAL DEPENDENCY BUILD: LIBPNG =======" os.chdir(str(path('..'))) os.chdir(str(path('.') / path('libpng-1.2.29'))) os.system('./configure') os.system('make all-am') os.system('make install prefix=%s' % installpath) os.system('make install-data-hook prefix=%s' % installpath) print "======= FIFE EXTERNAL DEPENDENCY BUILD: OPENAL-SOFT =======" os.chdir('..') os.chdir(str(path('.') / path('openal-soft'))) os.system('./configure') os.system('make') os.system('make install prefix=%s' % installpath) print "======= FIFE EXTERNAL DEPENDENCY BUILD: UNITTEST++ =======" os.chdir('..') os.chdir(str(path('.') / path('UnitTest++'))) os.system('make') shutil.copyfile('libUnitTest++.a', str(path(installpath) / path('lib') / path('libUnitTest++.a'))) shutil.copyfile( str(path('src') / path('UnitTest++.h')), str(path(installpath) / path('include') / path('UnitTest++.h'))) shutil.copyfile( str(path('src') / path('TestReporterStdout.h')), str(path(installpath) / path('include') / path('TestReporterStdout.h'))) print "======= FIFE EXTERNAL DEPENDENCY BUILD: ALL DONE ( CHECK LOG FOR POSSIBLE ERRORS ) =======" os.chdir(curpath)