[quote author="Smar" date="1281084862"]CMake's syntax is a bit unintuitive and if you need to do anything besides declarations, it gets pretty messy unless you want to put quite a bit time to write modules...
Or that's how I think about it.
[/quote]
Ok, Smar, this is an option form in CMake for build/update translations.
@option (UPDATE_TRANSLATIONS "Update source translation *.ts files (WARNING: make clean will delete the source .ts files! Danger!)")
if (UPDATE_TRANSLATIONS)
QT4_CREATE_TRANSLATION(QM_FILES ${TRANSLATIONS})
else (UPDATE_TRANSLATIONS)
QT4_ADD_TRANSLATION(QM_FILES ${TRANSLATIONS})
endif (UPDATE_TRANSLATIONS) @
What replacement for it will be in QtScript as buldsystem or other stuff?