How to convert c++ project

Feb 9, 2017 at 5:21pm
Hello, i'am using borland c++, how to make my project can be open in all windows platform without installing borland ?
coz when i try to open my .exe project in other laptop that not have borland c++ installed, that can't open.

thanks

Feb 9, 2017 at 6:24pm
Borland C++ comes with a program that will make a windows install script for your program. If you use this, then anyone can install and cleanly uninstall your program.
Feb 9, 2017 at 6:38pm
If you want to copy the .exe as a stand-alone program, and use it on another computer, you should use static linking. The default is to use dynamic linking, which means the exe is dependent on one or more Borland .dll files.

Here's a link which explains it - though there may be a better/clearer explanation somewhere:

http://bcbjournal.org/articles/vol4/0009/Building_stand-alone_EXEs.htm
Topic archived. No new replies allowed.