user1690531
user1690531

Reputation: 241

Build project package C++ Builder

I have written a GUI forms application in C++ Builder and am wanting to be able to run the .exe on another computer.

I am getting some .bpl errors when trying to run the .exe on another computer.

How can I combine all the required files into a 'package' such that the .exe can be run on computers that do not have the required files?

I have done Project->Deployment and a list of files have appeared, including the .bpl file. However, what do I do from here?

thanks

Upvotes: 2

Views: 3174

Answers (1)

Remy Lebeau
Remy Lebeau

Reputation: 596176

Your .exe has dependancies on external .bpl files that you have not distributed to the other machines. If you want the .exe to be self-contained so you do not need to distribute those files, go in to the Project Options and disable both the "Use dynamic RTL" and "Build with runtime packages" options.

Upvotes: 2

Related Questions