On 17.05.2011 21:46, Vincent van Ravesteijn wrote:
Mmmh, now I'm starting to get confused about your question. Are
you asking why you have to include the moc_* files or why the
moc_* file was not created for fancylineedit ? The creation of
the moc_* file is not trigged by including it.
macro(LYX_AUTOMOC)
....
string(REGEX MATCHALL "#include +[\"<]moc_[^ ]+\\.cpp[\">]" _match
"${_contents}")
if (_match)
You should either add moc_fancylineedit.cpp to fancylineedit.cpp or
separately build and link moc_fancylineedit.cpp. As we do not add
them to the msvc project file, we have to include the moc_* files
in the *.cpp files.
I'm a bit confused by all the build systems we're using.
We're using autotools and CMake. As CMake is cross-platform and
autotools is not, we need CMake for Windows. The tendency is now
to at least make CMake do all the thing autotools can do and to
make it the default build system for all platforms.
Thanks for the quick reply ;) Have you tried the patch what do you think of the
result?
No not yet, I'm busy with other things right now. And I have to think again
how I'm gonna apply a patch to my tree.
Vincent