Qt metaObject linker problem

33,055

Solution 1

You usally get these errors when the moc_foo.cpp for foo.h (which contains your class marked with Q_OBJECT) is not compiled / linked in your project.

To make a Qt project work in VS you either

  1. Create a .vcproj file with 'qmake -tp vc' or
  2. Use the Qt Visual Studio Add-in which handles all the moc magic automatically for you (doesn't work with VC Express versions though).

When using the add-in you can trigger the creation of the moc_foo.cpp by

  • Make sure the header file of the object in question appears in the VS project
  • List item
  • remove all occurrances of Q_OBJECT from the header file of Multiplication_dialog.
  • save the file
  • add Q_OBJECT again
  • save the file

Now you should have two versions of moc_multiplication_dialog.cpp in your "Generated Files" folder in the Solution Explorer. One for "Debug" and one for "Release". Make sure that one of these files is not excluded from build.

Solution 2

I faced the same linker error today, but it was due to a small slip:

I added cpp/ui files to my project manually, but forgot to add the header file explicitly as header file. Now when compiling I got a similar error message as above and the moc_*.cpp file(s) were not generated in the debug (or release) directory of the build. That was not such an obvious mistake, qmake did not complain and other than the linker message I got no errors.

So if anyone encounters the same problem again (or makes the same copy & pase mistake): make sure the header files have also been added to your project file

Solution 3

Citate from book "C++ GUI Programming with Qt 4" (page 19): For moc to work correctly, we must put the class definition in a header file, separate from the implementation file. So, you need write 2 files for your class: Multiplication_dialog.h and Multiplication_dialog.cpp! And you must recreate makefile!

Solution 4

Well Today I faced probably the same problem. I know the thread is pretty old. But It may still help someone.

What happened in my case was moc was generating the moc_ .cpp files but VC doesn't know that It has to compile them too. So I manually added those moc generated files so that it compiles. and It worked.

Solution 5

I'm currently working with VS 2013 with QT 5.4 add-in. Building projects with the add-in makes it easier as the moc'ing is automatically handled. To prevent linker error problems with the Qt metaObject issues:

  1. Comment out all instances of Q_OBJECT in all header files that contain it in the class declarations.

  2. Build the solution

  3. Uncomment all instances of the Q_OBJECT in the header files.

  4. Rebuild the solution. This is where the all the all the header and cpp files are re-compiled with the moc'ing automatically done. The linker errors are in turn, taken care of.

Share:
33,055
smallB
Author by

smallB

Updated on September 04, 2020

Comments

  • smallB
    smallB almost 4 years

    After integrating Qt with Vs and trying to compile .pro file I'm getting following errors:

    Error   9   error LNK2001: unresolved external symbol "public: virtual int __thiscall Multiplication_dialog::qt_metacall(enum QMetaObject::Call,int,void * *)" (?qt_metacall@Multiplication_dialog@@UAEHW4Call@QMetaObject@@HPAPAX@Z)     
    
    Error   7   error LNK2001: unresolved external symbol "public: virtual struct QMetaObject const * __thiscall Multiplication_dialog::metaObject(void)const " (?metaObject@Multiplication_dialog@@UBEPBUQMetaObject@@XZ)  
    
    
        Error   8   error LNK2001: unresolved external symbol "public: virtual void * __thiscall Multiplication_dialog::qt_metacast(char const *)" (?qt_metacast@Multiplication_dialog@@UAEPAXPBD@Z)    
    

    What to do with this?

  • smallB
    smallB almost 13 years
    #jobor I'm using qt addin (that's what you refer as vs addin I hope)
  • Raiv
    Raiv almost 13 years
    Check if moc_multiplication_dialog.cpp included in your vsproj. if it is missed, @jobor is right)
  • jobor
    jobor almost 13 years
    Yes I mean the Qt add-in. The problem is that your class Multiplication_dialog has a Q_OBJECT macro but moc_multiplication_dialog.cpp (I can only guess the file name) is not created or compiled.
  • László Papp
    László Papp over 9 years
    Why would that be necessary?
  • Akın Yılmaz
    Akın Yılmaz over 9 years
    Because of some wrong configuration of VS preventing usage of moc files. Sometimes even if it generates moc files correctly but because they are not included, it behave like it does not exist
  • László Papp
    László Papp over 9 years
    Include it in the source file at the end?
  • László Papp
    László Papp over 9 years
    There is a need for something if it is not handled by VS. That is also a good practice when using cmake. If you do it IDE agnostic, it will work with any buildsystem.
  • user1767754
    user1767754 over 9 years
    This is really helpful having info from a book
  • Mark Ch
    Mark Ch over 7 years
    Some of the Examples shipped with QtCreator include .moc files in the project. So the conclusion has to be that, while including header files seems more correct, including moc files is totally valid.
  • Matthew
    Matthew over 7 years
    that temporarily worked for me. Thanks... I will see if it holds up as the application continues to build itself
  • PfunnyGuy
    PfunnyGuy over 6 years
    This is applicable not only to .cpp BUT TO .H as well. We defined a pure abstract as our defined interface, but it had a non-virtual signal. This means the .h has to be in the source to be compiled in your CMakeLists.txt file so it will be moc'd.