PreCompiler 2
----------------

importbuild
  has to be declared directly after imports.
  like this:
 framework brl.blitz
 import brl.timer
  importbuild
 includes ..etc...see /test/test.bmx, simply drop that file to PreCompiler.exe


%buildincbin%
  access the version-file like this: readfile("incbin::%buildincbin%")

macro name
  code
endmacro
name
you can simply use the compiler directives PUBLIC and PRIVATE to make use this macro
in other includes

define name
ifdef name
  code
elsedef
  code
enddef

-

Commandline:
 PreCompiler filename -r -d -e
 -e or -edit     opens the editor before compiling
 -d or -debug    force debugmode
 -w or -console  force output-console
 -c or -compile  force compile
 -r or -run      force run

-

 When an error occures in debug window, press H for help, or just T to get the error.

Version 0.8
 Seems that windres.exe cant handle filenames with spaces.
Version 2.0
 More forward code.
 All spaces in filenames are cleared before sending to WINDRES.EXE.
 After that the exe-file will be renamed to its original. see /RES/name.ba
 Its kinda a normal batch-file.
