4

我对 CMake 很陌生,我正在尝试用它来构建一个小的 KDE 应用程序。我必须使用 QTXml 模块,我的程序编译没有问题,但是在链接阶段,ld 找不到 QXml 组件...

主文件

#include "test.h"

int main(int argc, char **argv)
{
    return 0;
}

测试.h

#ifndef TEST_H
#define TEST_H

#include <QXmlResultItems>
#include <QString>
#include <QBuffer>
#include <QXmlQuery>

class test {
public:
    test(){}
    ~test(){}
    QXmlResultItems* find ( const QString& node, const QString& xpath );
private:
    QBuffer device_;
};

#endif // TEST_H

测试.cpp

#include "test.h"

QXmlResultItems* test::find ( const QString& node, const QString& xpath )
{
    QXmlResultItems* result = new QXmlResultItems;
    QXmlQuery query;
    query.bindVariable ( "device",&device_ );
    query.setQuery ( "doc($device)/"+node+"/"+xpath );
    query.evaluateTo ( result );
    return result;
}

CMakeLists.cmake

project(qtcmakepb)

find_package(KDE4 REQUIRED)
include (KDE4Defaults)

include_directories( ${KDE4_INCLUDES} ${QT_INCLUDES} )
#Supposed to be useless because of KDE4 REQUIRED and ${QT_INCLUDES}
find_package(Qt4 COMPONENTS QtCore QtXml REQUIRED )


# In this CMakeLists.txt we define which files
# are used to compile the application
set(qtcmakepb_SRCS main.cpp test.cpp)


# Set the name of the application
kde4_add_executable(qtcmakepb ${qtcmakepb_SRCS})

# Select which libraries we need to link to
target_link_libraries(qtcmakepb ${KDE4_KDEUI_LIBS})
target_link_libraries(qtcmakepb ${QT_QTCORE_LIBS})
target_link_libraries(qtcmakepb ${QT_QTXML_LIBS})

# Tell cmake to install the application binary
install(TARGETS qtcmakepb ${INSTALL_TARGETS_DEFAULT_ARGS})

# Install the .desktop file
install( PROGRAMS qtcmakepb.desktop  DESTINATION ${XDG_APPS_INSTALL_DIR} )

make 的输出:

Linking CXX executable qtcmakepb
CMakeFiles/qtcmakepb.dir/test.o: In function `test::find(QString const&, QString const&)':
/home/zelwina/projects/QtCmakePb/src/test.cpp:5: undefined reference to `QXmlResultItems::QXmlResultItems()'
/home/zelwina/projects/QtCmakePb/src/test.cpp:6: undefined reference to `QXmlQuery::QXmlQuery()'
/home/zelwina/projects/QtCmakePb/src/test.cpp:7: undefined reference to `QXmlQuery::bindVariable(QString const&, QIODevice*)'
/home/zelwina/projects/QtCmakePb/src/test.cpp:8: undefined reference to `QXmlQuery::setQuery(QString const&, QUrl const&)'
/home/zelwina/projects/QtCmakePb/src/test.cpp:9: undefined reference to `QXmlQuery::evaluateTo(QXmlResultItems*) const'
/home/zelwina/projects/QtCmakePb/src/test.cpp:10: undefined reference to `QXmlQuery::~QXmlQuery()'
collect2: erreur: ld a retourné 1 code d'état d'exécution
make[2]: *** [src/qtcmakepb] Erreur 1
make[1]: *** [src/CMakeFiles/qtcmakepb.dir/all] Erreur 2
make: *** [all] Erreur 2

我究竟做错了什么 ?

4

3 回答 3

3

要使用 CMake 的FindQt4 模块,请执行以下操作:

find_package(Qt4 COMPONENTS QtCore QtXml REQUIRED)
include(${QT_USE_FILE})
include_directories(${KDE4_INCLUDES} ${QT_INCLUDES})
target_link_libraries(qtcmakepb ${KDE4_KDEUI_LIBS} ${QT_LIBRARIES})

如果要指定单个包含目录和库,请将上面的最后 2 行替换为:

include_directories(${KDE4_INCLUDES}
                    ${QT_QTCORE_INCLUDE_DIR}
                    ${QT_QTXML_INCLUDE_DIR})
target_link_libraries(qtcmakepb
                      ${KDE4_KDEUI_LIBS}
                      ${QT_QTCORE_LIBRARY}
                      ${QT_QTXML_LIBRARY})

你的问题是你没有打电话include(${QT_USE_FILE}),那QT_QTCORE_LIBS应该是QT_QTCORE_LIBRARY(对于 QtXml 库也是如此)。此外,您需要在调用include_directories FindQt4模块include并将QT_USE_FILE.

有关随您的 CMake 版本提供的 FindQt4 模块的完整信息,请运行:

cmake --help-module FindQt4


编辑

事实证明,根本原因实际上是未定义的函数是 QtXmlPatterns 库的一部分,因此find_package调用应该包含QtXmlPatterns在列表中。

完成后,变量${QT_QTXMLPATTERNS_INCLUDE_DIR}${QT_QTXMLPATTERNS_LIBRARY}由调用设置,include(${QT_USE_FILE})并且可以根据需要添加。

如果您使用的是 QT5

使用 Qt5,使用 CMake 变得更简单。

为了包含和链接 QtXml 和 QtXmlPatterns,你只需要这些行:

find_package(Qt5Xml REQUIRED)
find_package(Qt5XmlPatterns REQUIRED)

并链接如下:

target_link_libraries(qtcmakepb Qt5::Xml Qt5::XmlPatterns)
于 2012-06-19T16:06:52.643 回答
0

您是否启用了 QT_USE_QTXML?

尝试:set(QT_USE_QTXML TRUE)

于 2012-06-19T13:53:26.733 回答
0

不知道这是否有帮助,但是:

target_link_libraries(qtcmakepb ${QT_QTCORE_LIBS})
target_link_libraries(qtcmakepb ${QT_QTXML_LIBS})

你应该使用这个:

target_link_libraries(qtcmakepb ${QT_LIBRARIES})

这会将您选择的所有内容COMPONENTSfind_package(Qt4). 警告:如果您将多个目标与不同的 Qt 组件集链接,这将不起作用。

于 2012-06-19T14:38:08.647 回答