I think it's unreasonable for a library to require preprocessing of my source code with a special tool. That said, several people have recommended the Qt library to me for cross platform GUI development.
How usable is Qt without the preprocessing step?
EDIT: Okay people, I'm not meaning this question as a rip on Qt -- too many Qt fanboys are treating it as if it is. I don't want to discuss the merits of the fact that Qt came up with this preprocessing tool. I understand why the tool is there, and I understand why there are large parts of Qt's design that are built upon the idea of preprocessing.
I've never used Qt, ergo I am in no position to rip on it. But I would much rather pay in writing a small amount of boilerplate myself and not depend on ripping apart my entire build process. I won't use Flex and Bison in my current project for the same reason; if I won't use those tools, I'm definitely not going to use another kind of preprocessing.
So, please don't take me as ripping on Qt. I cannot comment on how nice or not nice it is; I have not used it. I just want to know if it is possible to use it without moc.
moctool is the main reason I haven't jumped onto the Qt bandwagon. – Praetorian Aug 27 '10 at 21:21mocis really only a problem until you actually use it. I used to balk at the idea of an extra preprocessing step, but once I started using Qt instead of just thinking about it,mocceased to be a nuisance. Especially if you use QMake,mocis almost invisible in practice. – Steve S Aug 27 '10 at 21:26