Problem building hacked MaxIDE

BlitzMax Forums/Brucey's Modules/Problem building hacked MaxIDE

Who was John Galt?(Posted 2010) [#1]
I'm trying to build the hacked version of MaxIDE that plays nice with wxwidgets, but I get the following error:

Compile Error: Can't find interface for module 'brl.win32maxgui'

I have checked the maxgui module is installed and working.

Any ideas?


xlsior(Posted 2010) [#2]
What version of the IDE source and Blitzmax are you using?

At some point in the past the MaxGUI library moved OUT of the brl.* folder and became its own hierarchy. It's possible/likely that whatever IDE source you're trying to modify is older, and still attempts to import from the brl.* path.

check the top of tyhe IDE source, and look for the framework/import statements. Instead of the brl.* maxgui lines, try pointing it to maxgui.drivers instead...


Who was John Galt?(Posted 2010) [#3]
xlsior, you are my new best friend! This had me pulling my hair out. Thanks so much.


Brucey(Posted 2010) [#4]
You may want to use the pre-compiled one available here : http://brucey.net/programming/blitz/mingw/index.html


Who was John Galt?(Posted 2010) [#5]
Thanks a lot, Brucey!