使用qmake链接依赖库

时间:2015-09-20 15:21:00

标签: c++ qmake

我有一个大的qt项目,但它由主应用程序,API和插件组成

TEMPLATE = subdirs

SUBDIRS += app api plugins updater

api.subdir = api
app.subdir = app
app.depends = api
plugins.subdir = plugins
plugins.depends = api

API是静态库。所以,我想要自动链接API与主应用程序和插件。

例如,我需要这样做:

LIBS += -L/path/to/lib -lapi

但它很难看,我不能分享这个。我想qmake动态地做。

我该怎么办?

0 个答案:

没有答案