我的应用程序有一个主要的 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?
将 lib 和应用程序放在单独的子目录中,并使顶级 .pro 文件使用 SUBDIRS 模板:
SUBDIRS
TEMPLATE = subdirs SUBDIRS = lib app app.depends = lib
Put the lib and the app in separate subdirectories and make your top-level .pro file to use the SUBDIRS template:
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
将 lib 和应用程序放在单独的子目录中,并使顶级 .pro 文件使用
SUBDIRS
模板:Put the lib and the app in separate subdirectories and make your top-level .pro file to use the
SUBDIRS
template: