On Wednesday 16 January 2008 11:05:04 am Leopold Palomo-Avellaneda wrote:

>
> Linking CXX shared library libpluginregistrodeiva.dylib
> Undefined symbols:
[snip]
>   "FichaBc::qt_metacall(QMetaObject::Call, int, void**)", referenced from:
>       vtable for RegistroIvain registroiva.o
>       RegistroIvaView::qt_metacall(QMetaObject::Call, int, void**)in
> moc_registroivaview.o

Unresolved vtables in Qt code usually means you forgot to run moc on the 
header file and include it in the build.  If that's it, it can be done by the 
QT4_WRAP_CPP macro.  On Linux, you might see that problem at run time with a 
crash.

Clint
_______________________________________________
CMake mailing list
CMake@cmake.org
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to