How do I tell BMK to build a GUI app?

BlitzMax Forums/BlitzMax Programming/How do I tell BMK to build a GUI app?

ozak(Posted 2006) [#1]
I'm using a custom batchfile to build source with BMK, build installer etc.

But I get a console window with my GUI app and I can't find anything in the docs, source or forums about how to set BMK to build a GUI app.

Thanks in advance


ozak(Posted 2006) [#2]
Found it. -t gui :)

Had to search the huge MAXIde.bmx to find it though :)

So a full release build for a gui app would be:

makeapp -a -r -v -t gui MyApp.bmx

Omitting -t gui will build a console app, and -a triggers a complete rebuild. -v is the verbose option and -r is for release build.