Name This Tool

BlitzMax Forums/BlitzMax Beginners Area/Name This Tool

Blitzogger(Posted 2006) [#1]
I remember a tool that read you source files and modified it to only include the revelant libraries. It would ask you if you wanted Direct3D support or OpenGL support, and the location of all your source files. It would then parse it and add framework and import statements that were based upon the libraries which you were using and removed the ones you weren't using at compile time. Listed below is a sample of the output it would add to the source files.

'Load Libraries
'Framework BRL.D3D7Max2D
'Import BRL.System
'Import BRL.RamStream
'Import BRL.WAVLoader
'Import BRL.BMPLoader
'Import BRL.Win32MaxGUI
'Import BRL.FreeAudioAudio
'Import BRL.Timer

' modules which may be required:
' Import BRL.PNGLoader
' Import BRL.TGALoader
' Import BRL.JPGLoader
' Import BRL.OGGLoader


Could someone please tell me the name of this useful tool and provide a link to it please?


H&K(Posted 2006) [#2]
Framework Assistant
Written by Jim Brown
email: config2000 (at) hotmail (dot) com

http://homepage.ntlworld.com/config/fa/fa.zip


Blitzogger(Posted 2006) [#3]
Thank You Very Much! Just what i needed.