Changeset 407 for trunk/qmake/main.cpp
- Timestamp:
- Dec 10, 2009, 12:57:16 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/qmake/main.cpp
r363 r407 56 56 #include <sys/stat.h> 57 57 58 #ifndef QT_BUILD_QMAKE 59 #include <qcoreapplication.h> 60 #endif 61 58 62 QT_BEGIN_NAMESPACE 59 63 … … 85 89 int runQMake(int argc, char **argv) 86 90 { 91 #ifndef QT_BUILD_QMAKE 92 // create application instance so that QLibraryInfo will pick up a qt.conf 93 // file if there is any in the executable's directory 94 QCoreApplication coreApp(argc, argv); 95 #endif 96 87 97 // parse command line 88 98 int ret = Option::init(argc, argv);
Note:
See TracChangeset
for help on using the changeset viewer.