2

我正在使用 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生成一个moc文件,这怎么可能?

谢谢!

4

1 回答 1

1

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

另请注意,CMake 仍将 QT4_AUTOMOC 标记为实验性的,因此请确保它确实符合您的预期并正确生成所需的文件。如果没有,请考虑使用 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 文件似乎还不错。

于 2012-03-10T08:34:07.067 回答