When I create a Delphi console application, I can deploy the generated EXE file without worrying about external DLL files. But if I create very simple C++Builder (version 2007) console application (no VCL) the EXE file requires the CC3280MT.dll
file to run.
How can I avoid which my C++Builder console application requires the CC3280MT.dll
file?
Even this simple code cause this dependence:
#include <iostream.h>
#pragma hdrstop
#pragma argsused
int main(int argc, char* argv[])
{
cout << "Hello" << endl;
getchar();
return 0;
}
Also you should uncheck:
Project Options -> C++ Linker -> Link with the Delphi Runtime Library ...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With