Qt程序没有链接,没有生成moc文件

时间:2012-03-09 17:38:04

标签: qt cmake moc

我正在使用Qt,CMake和VS2010编译器。当我链接一小段测试代码时似乎有问题。链接器给出以下错误:

plotter.cpp.obj : error LNK2001: unresolved external symbol "public: virtual str
uct QMetaObject const * __thiscall Plotter::metaObject(void)const " (?metaObject
@Plotter@@UBEPBUQMetaObject@@XZ)...

(它会持续一段时间)

当我尝试从以下代码中继承QObject时发生错误:

class Plotter : public QObject
{
        Q_OBJECT
public:

如果我省略Q_OBJECT,程序会链接,但我不能在运行时使用类槽。 我注意到没有为plotter.h生成moc文件。这是我的CMakeLists.txt:

 cmake_minimum_required (VERSION 2.6)
    project (ms)

    SET(CMAKE_BUILD_TYPE "Release")

    FIND_PACKAGE(Qt4)
    INCLUDE(${QT_USE_FILE})
    ADD_DEFINITIONS(${QT_DEFINITIONS})

    LINK_LIBRARIES(
        ${QT_LIBRARIES}
    )

    set(all_SOURCES plotter.cpp main.cpp dialog.cpp)
    QT4_AUTOMOC(${all_SOURCES})
    add_executable(ms ${all_SOURCES})
    target_link_libraries(ms ${LINK_LIBRARIES})

为dialog.cpp生成一个moc文件,但是对于plotter.cpp没有生成,这怎么可能?

谢谢!

1 个答案:

答案 0 :(得分:1)

首先,确保正确使用QT4_AUTOMOC。正如documentation指出的那样,您仍需要在源代码中正确包含mocced文件。

另请注意,QT4_AUTOMOC仍被CMake标记为实验性,因此请确保它实际上符合您的预期并正确生成所需文件。如果没有,请考虑使用QT4_WRAP_CPP切换到更强大的经典解决方案:

# notice that you need to pass the *header* here, not the source file
QT4_WRAP_CPP(MY_MOCED_FILES plotter.hpp)

# optional: hide the moced files in their own source group
# this is only useful if using an ide that supports it
SOURCE_GROUP(moc FILES ${MY_MOCED_FILES})

# then include the moced files into the build
add_executable(ms ${all_SOURCES} ${MY_MOCED_FILES})

除此之外,您的CMake文件似乎还不错。