QB64.org Forum

QB64 Team Software => InForm-based programs => Topic started by: FellippeHeitor on November 13, 2019, 07:49:37 am

Title: Distributing your InForm-based programs
Post by: FellippeHeitor on November 13, 2019, 07:49:37 am
When you distribute your uncompiled InForm-based programs, the minimum you should add to your zip for distribution, besides your own data files (if any), is:


That way you're including the InForm library files and anyone with QB64 on their system will be able to compile your program, even without having the full InForm package installed.

Check the attachment for a sample package.

However, if you intend to distribute only your binary (not including the source code - probably not in this forum), you don't need to ship anything besides the binary itself. InForm-based programs are self-contained. In this case you'd only ship any files needed for your program to run, like icons, data files, images, etc.
Title: Re: Distributing your InForm-based programs
Post by: George McGinn on March 19, 2021, 04:52:12 pm
Question - If I am distributing a binary executable do I need the same files? If not, what files do I need to include when providing an executable?
Title: Re: Distributing your InForm-based programs
Post by: SpriggsySpriggs on March 19, 2021, 05:05:12 pm
@George McGinn If you are only providing an executable and it has no need for any external files like text documents or pictures, then you should be good. Just take note of what resources your program uses and the folder structure you created/used in your code and be sure to distribute it as such.
Title: Re: Distributing your InForm-based programs
Post by: George McGinn on March 20, 2021, 02:09:30 pm
Thanks.