如何在创建exe文件的同时创建lib文件
我有一个内置到 exe 中的遗留应用程序。 我使用的是 Visual Studio 6.0,该应用程序是一个 C++ 应用程序。它使用了许多lib文件,是在VS6.0中内置的。现在我需要使用可执行文件中的 api。我想在创建 exe 的同时创建一个 lib 文件。我无法更改旧应用程序的代码。
非常感谢任何帮助。
谢谢, 啊
I have an legacy application which builds into exe.
I am using Visual Studio 6.0 and the application is an c++ application. It used many lib files, built in VS6.0. Now i need to use the api's which in the executable. I want to create a lib file while it is creating an exe. I cannot change the code of the legacy application.
Any help is highly appreciated.
Thanks,
AH
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
创建一个单独的库项目,并将包含您想要重用的 API 的任何源文件添加到其中。从 exe 项目中删除这些文件并使 exe 项目依赖于库项目可能会更干净,但这并不是绝对必要的。
Create a separate library project and add any source files with APIs you want to reuse into it. It's probably cleaner to also remove those files from the exe project and make the exe project depend on the library project, but this isn't strictly necessary.