void Configure::showSummary()
{
QString make = dictionary[ "MAKE" ];
- if (!dictionary.contains("XQMAKESPEC")) {
- cout << endl << endl << "Qt is now configured for building. Just run " << qPrintable(make) << "." << endl;
- cout << "To reconfigure, run " << qPrintable(make) << " confclean and configure." << endl << endl;
- } else if (dictionary.value("QMAKESPEC").startsWith("wince")) {
- // we are cross compiling for Windows CE
- cout << endl << endl << "Qt is now configured for building. To start the build run:" << endl
- << "\tsetcepaths " << dictionary.value("XQMAKESPEC") << endl
- << "\t" << qPrintable(make) << endl
- << "To reconfigure, run " << qPrintable(make) << " confclean and configure." << endl << endl;
- }
+ cout << endl << endl << "Qt is now configured for building. Just run " << qPrintable(make) << "." << endl;
+ cout << "To reconfigure, run " << qPrintable(make) << " confclean and configure." << endl << endl;
}
Configure::ProjectType Configure::projectType(const QString& proFileName)