2

我有两个动态库 library1.so library2.so (使用 library1.so ,路径是绝对的)

其中 library2.so 正在使用 library1.so,因此当我构建使用 library2.so(绝对路径)的项目时,它会为 library1.so 中的所有方法(未定义引用)提供错误

4

1 回答 1

1

在您的 qmake 配置中,您可以添加任意库:

LIBS += -llibrary2

或者

LIBS += /abspath/to/library2.so
于 2012-09-21T11:04:43.863 回答