Mercurial > fife-parpg
view build/win32-config-dist.py @ 307:22253b2c9b14
- added LightEdit editor plugin (needs light branch to work; deactivated if lighting renderer is not available)
- added animation viewer to ObjectEdit
- several bugfixes for ObjectEdit plugin
FEATURES:
- ObjectEdit
- viewing and rotating animated instances (rotations are hardcoded for now, FIFE needs to expose available angles to python in order to make animation rotation work for every client)
- LightEdit
- test global light values
author | chewie@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Tue, 11 Aug 2009 15:32:54 +0000 |
parents | 80b3c41c3427 |
children | 5ab78cd39534 |
line wrap: on
line source
import os def initEnvironment(env): env = env.Copy(tools = ['mingw']) return env #Note, if you aren't running from the batch file, you should set an environment variable _ to hold the path to the libraries def addExtras(context): path = os.environ['_'] includepath = path + '\\..\\..\\includes\\mingw' staticlibpath = path + '\\..\\..\\static_libs\\mingw' context.env.Append(CPPPATH = [includepath + '\\libogg', includepath + '\\openal', includepath + '\\sdl_image', includepath + '\\zlib', includepath + '\\libguichan', includepath + '\\boost_1_38_0', includepath + '\\libvorbis', includepath + '\\libpng', includepath + '\\sdl_ttf', includepath + '\\sdl', includepath + '\\python25', includepath + '\\unittest++']) context.env.Append(LIBPATH = [staticlibpath, staticlibpath + '\\python25']) context.env.Append(LIBS = ['libguichan_sdl', 'libguichan', 'mingw32', 'zlib', 'vorbis', 'ogg', 'vorbisfile', 'libpng', 'SDL_image', 'SDLmain', 'SDL.dll', 'OpenAL32', 'SDL_ttf', 'boost_filesystem', 'boost_regex', 'boost_system', 'python25']) if context.env['opengl']: context.env.Prepend(LIBS = ['libguichan_opengl']) context.env.Append(LIBS = ['opengl32', 'glu32'])