On 12/8/2010 7:57 AM, ext Halton Huo wrote: > Hi, > > I'm using Qt Creator built from master of gitorious.org. My Qt version > is 4.7.1. The QML visual editor is missing, anything do I miss?
Check the output of "qmake -r" inside Qt ... most likely it warns about QuickDesigner not be compiled due to private headers missing. QuickDesigner depend on some internal APIs of Qt. They are only available if you compiled your Qt yourself. You then either do an 'in-source' build of Qt (e.g. by -developer-build, or -prefix "." configure options). Or you have to point qmake to the include path in your Qt source directory with 'qmake -r "QT_PRIVATE_HEADERS=$QT_SOURCE_TREE/include'. This is also described in the README file of QtCreator. Regards Kai > Thanks, > Halton. > > _______________________________________________ > Qt-qml mailing list > [email protected] > http://lists.trolltech.com/mailman/listinfo/qt-qml -- Kai Koehne Software Engineer Nokia, Qt Development Frameworks Nokia gate5 GmbH Firmensitz: Invalidenstr. 117, 10115 Berlin, Germany Registergericht: Amtsgericht Charlottenburg, Berlin: HRB 106443 B Umsatzsteueridentifikationsnummer: DE 812 845 193 Geschäftsführer: Dr. Michael Halbherr, Karim Tähtivuori _______________________________________________ Qt-qml mailing list [email protected] http://lists.trolltech.com/mailman/listinfo/qt-qml
