summaryrefslogtreecommitdiff
path: root/qmake/main.cpp
Unidiff
Diffstat (limited to 'qmake/main.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--qmake/main.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/qmake/main.cpp b/qmake/main.cpp
index eed1697..cc2d08a 100644
--- a/qmake/main.cpp
+++ b/qmake/main.cpp
@@ -55,18 +55,23 @@ int main(int argc, char **argv)
55{ 55{
56 /* parse command line */ 56 /* parse command line */
57 if(!Option::parseCommandLine(argc, argv)) 57 if(!Option::parseCommandLine(argc, argv))
58 return 666; 58 return 666;
59 59
60 QDir sunworkshop42workaround = QDir::current(); 60 QDir sunworkshop42workaround = QDir::current();
61 QString oldpwd = sunworkshop42workaround.currentDirPath(); 61 QString oldpwd = sunworkshop42workaround.currentDirPath();
62 Option::output_dir = oldpwd; //for now this is the output dir 62 Option::output_dir = oldpwd; //for now this is the output dir
63 if(Option::output_dir.right(1) != QString(QChar(QDir::separator()))) 63#ifdef Q_WS_WIN
64 Option::output_dir += QDir::separator(); 64 if ( !(Option::output_dir.length() == 3 && Option::output_dir[0].isLetter() && Option::output_dir.endsWith(":/") ) )
65#endif
66 {
67 if(Option::output_dir.right(1) != QString(QChar(QDir::separator())))
68 Option::output_dir += QDir::separator();
69 }
65 QMakeProject proj; 70 QMakeProject proj;
66 int exit_val = 0; 71 int exit_val = 0;
67 QStringList files; 72 QStringList files;
68 if(Option::qmake_mode == Option::QMAKE_GENERATE_PROJECT) 73 if(Option::qmake_mode == Option::QMAKE_GENERATE_PROJECT)
69 files << "(*hack*)"; //we don't even use files, but we do the for() body once 74 files << "(*hack*)"; //we don't even use files, but we do the for() body once
70 else 75 else
71 files = Option::mkfile::project_files; 76 files = Option::mkfile::project_files;
72 for(QStringList::Iterator pfile = files.begin(); pfile != files.end(); pfile++) { 77 for(QStringList::Iterator pfile = files.begin(); pfile != files.end(); pfile++) {