如何在Linux中为qml项目链接第三方库

时间:2013-03-08 12:42:24

标签: qt qt-creator qml

如何在Qt Creator中为Qt Quick UI应用程序链接第三方库。 我有用linux(.so)构建的库文件 提前致谢

1 个答案:

答案 0 :(得分:1)

您应该创建“Qt Quick Application *”项目,.pro文件应该如下所示:

QT += core quick gui network
TEMPLATE = app
HEADERS += some .h files
SOURCES += some .cpp files
INCLUDEPATH += ../include
OTHER_FILES += *.qml #or path to qml files
LIBS += -lprotobuf  # list of Libs, which you wish