How to exclude unused modules?

BlitzMax Forums/BlitzMax Programming/How to exclude unused modules?

void(Posted 2010) [#1]
I using Leadwerks engine, and size of EXE file is about 2 mb. How I can exclude not used modules, like LAN, or MAX2D, to decrase EXE size?

Before thanks ;)


_Skully(Posted 2010) [#2]
Use the framework command. it will only include components you need but you will have to specify each that you need.


xlsior(Posted 2010) [#3]
And for ease of use, you can use 'Framework Assistant' which will tell you which modules you need to include for your program to work:

http://www.blitzbasic.com/Community/posts.php?topic=47141


void(Posted 2010) [#4]
Many thanks!