Build a C ++ Builder project package

I wrote a GUI forms application in C ++ Builder and want to be able to run .exe on another computer.

I get some .bpl errors when trying to run .exe on another computer.

How can I combine all the necessary files into a “package” so that .exe can be run on computers that do not have the necessary files?

I did Project-> Deployment and a list of files appeared, including a .bpl file. However, what should I do?

thanks

+1
c ++ package c ++ builder bpl
source share
1 answer

Your .exe has dependencies on external .bpl files that you did not distribute to other computers. If you want .exe to be standalone, so you do not need to distribute these files, go to the project settings and disable the "Use dynamic RTL" and "Build with runtime packages" options.

+2
source share

All Articles