0

I am prototyping a user interface using C++Builder XE2. I need this project to run on all Windows PCs, whether they have developer tools installed or not.

How can I get all the required libraries to be linked into the .exe that I distribute to users, so they can run the application? What settings in Project Options should be set?

Users now report me this error:

enter image description here

Ondřej Mirtes
  • 5,054
  • 25
  • 36

1 Answers1

3

This is a FAQ for example How create an standalone (without DLL file dependencies) C++Builder console application like a Delphi application?

you must turn off two things. Use runtime packages and link with runtime libraries.

Community
  • 1
  • 1
David Dean
  • 2,682
  • 23
  • 34