view utils/frminfo/SConscript @ 146:54b3984e1afc

The getIndex function was a hack that shadowed another bug that caused the pools to misbehave. AddResourceFromFile works now exactly as getIndex, it's just faster. Fixed GUIImage to not hold a reference, it uses the index directly anyway. Plus heaps of minor adjustments for more informative debug output and statistics.
author phoku@33b003aa-7bff-0310-803a-e67f0ece8222
date Thu, 09 Oct 2008 12:36:21 +0000
parents 4a0efb7baf70
children
line wrap: on
line source

import glob

Import('env')
env = env.Copy()
files = glob.glob('*.cpp')
env.Program('frminfo', files)
	
# vim: set filetype=python :