用于构建在所有计算机上运行的release.exe的项目设置
我正在使用 C++Builder XE2 制作用户界面原型。我需要这个项目在所有 Windows PC 上运行,无论它们是否安装了开发人员工具。
如何将所有必需的库链接到我分发给用户的 .exe 中,以便他们可以运行该应用程序?项目选项中应该设置哪些设置?
用户现在向我报告此错误:
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:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个常见问题解答,例如 如何创建独立的(没有 DLL 文件依赖项)C++Builder 控制台应用程序(如 Delphi 应用程序)?
您必须关闭两件事。使用运行时包并与运行时库链接。
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.