告诉 qmake 编译依赖库
我的应用程序有一个主要的 pro 文件,我想告诉 qmake 在应用程序的同时编译一个单独的库。该 lib 的目录中还有一个 pro 文件。这可能吗?
I have a main pro file for my application and I would like to tell qmake to also compile a separate lib at the same time as the application. The lib also has a pro file in its directory. Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将 lib 和应用程序放在单独的子目录中,并使顶级 .pro 文件使用
SUBDIRS
模板:Put the lib and the app in separate subdirectories and make your top-level .pro file to use the
SUBDIRS
template: