如何在 Qt 中为 qmake 指定库文件依赖项?

How do a specify a library file dependency for qmake in Qt?(如何在 Qt 中为 qmake 指定库文件依赖项?)

本文介绍了如何在 Qt 中为 qmake 指定库文件依赖项?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有一个 SomeLib.pro 文件,其中包含:

Have a SomeLib.pro file that contains:

CONFIG  += debug
TEMPLATE = lib
TARGET = SomeLib
..

然后在依赖的SomeApp.pro中:

Then in a dependent SomeApp.pro:

..
debug:LIBS += -lSomeLib_debug
..

如果我在 qmake 中碰了 SomeLib,如何强制 SomeApp 构建?

How can I force SomeApp to build if I touched SomeLib in qmake?

推荐答案

这很丑,因为你需要给出确切的库文件名,但这应该可以:

It's ugly because you need to give the exact library file name, but this should work:

TARGETDEPS += libfoo.a

TARGETDEPS += libfoo.a

这篇关于如何在 Qt 中为 qmake 指定库文件依赖项?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本文标题为:如何在 Qt 中为 qmake 指定库文件依赖项?

基础教程推荐