Technique for Module Development

BlitzMax Forums/BlitzMax Programming/Technique for Module Development

BLaBZ(Posted 2010) [#1]
What's your technique for module development?

atm, I'm using 2 windows, one to develop the module and the other to test the new additions in, annoying thing is I have to build the module ever time I want to test something.

Is this practical and or ideal?


ziggy(Posted 2010) [#2]
If you're developing on a windows machine, with BLIde you can create a single project that contains the module and the test program, and F5 will build only modified things of the module and test program automatically just before running the test program accordingly. You can also mix several modules in a single project.


Tommo(Posted 2010) [#3]
Module is just the same as other code.
You can write and test your module as normal application. You don't need to put it into "mod" folder before make it stable.