Mercurial > fife-parpg
view build/linux2-config-dist.py @ 215:5f5f8ca6db93
- added indicator for the active layer (no color indication, unfortunately pychan can't style widgets once they were stylized(), which is true for the editor application)
- added autoselection for a different layer if the active layer becomes invisible (which works but has no checks if the new active layer is invisible)
author | chewie@33b003aa-7bff-0310-803a-e67f0ece8222 |
---|---|
date | Tue, 17 Mar 2009 23:18:11 +0000 |
parents | 542213eebe73 |
children | 81d623c97e57 |
line wrap: on
line source
import sys def initEnvironment(env): return env def addExtras(context): context.env.Append(LIBS = 'm') context.env.Replace(LIBPATH = ['/opt/lib', '%s/ext/install/lib' % context.env['SCONS_ROOT_PATH']]) context.env.Append(CPPPATH = ['/opt/include', '/usr/include/vorbis', '/usr/include/python%s'% sys.version[:3], '/usr/include/SDL', '%s/ext/install/include' % context.env['SCONS_ROOT_PATH']]) context.env.Append(CPPPATH = []) context.checkSimpleLib(['vorbisfile'], 'vorbisfile.h') context.checkSimpleLib(['openal_soft'], 'AL/al.h') context.checkSimpleLib(['python%s' % sys.version[:3], 'python2%s'%sys.version[2]], ['Python.h']) # Use current python version context.checkSimpleLib(['SDL'], 'SDL.h') context.checkSimpleLib(['SDL_ttf'], 'SDL_ttf.h') context.checkSimpleLib(['SDL_image'], 'SDL_image.h') context.checkSimpleLib(['guichan']) context.checkSimpleLib(['guichan_sdl']) context.checkSimpleLib(['boost_filesystem', 'boost_filesystem-gcc', 'boost_filesystem-gcc41']) context.checkSimpleLib(['boost_regex', 'boost_regex-gcc', 'boost_regex-gcc41']) context.checkSimpleLib(['png'], 'png.h'); if context.env['opengl']: # linking explicitly against libstdc++ to work around Segfault_in_cxa_allocate_exception issue: http://wiki.fifengine.de/Segfault_in_cxa_allocate_exception context.env.Append(LIBS = ['stdc++', 'GL', 'GLU']) context.env.Append(LIBPATH = ['/usr/X11R6/lib']) context.checkSimpleLib(['guichan_opengl'])