How to compile a release program?

BlitzMax Forums/BlitzMax Beginners Area/How to compile a release program?

GuoQiang(Posted 2005) [#1]
If I want to release a game , How to compile a release program?


GfK(Posted 2005) [#2]
Program>>Build


klepto2(Posted 2005) [#3]
But first you have to uncheck the Debug Option in the IDE and maybe the 'Build GUI App'.


ImaginaryHuman(Posted 2005) [#4]
Blitz will always generate standalone executable files that you can copy and send to people, it'll be on your harddrive as soon as you've hit Build or Build & Run.

You will probably want to leave the Debug switched on while you are developing, then switch it off for the final compilation. You would also want Build GUI App so that it runs as an application, otherwise it will launch inside a shell console.


GuoQiang(Posted 2005) [#5]
Thank you.