-rw-r--r-- | qmake/main.cpp | 9 |
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 | |||
@@ -15,98 +15,103 @@ | |||
15 | ** | 15 | ** |
16 | ** This file may be distributed and/or modified under the terms of the | 16 | ** This file may be distributed and/or modified under the terms of the |
17 | ** GNU General Public License version 2 as published by the Free Software | 17 | ** GNU General Public License version 2 as published by the Free Software |
18 | ** Foundation and appearing in the file LICENSE.GPL included in the | 18 | ** Foundation and appearing in the file LICENSE.GPL included in the |
19 | ** packaging of this file. | 19 | ** packaging of this file. |
20 | ** | 20 | ** |
21 | ** Licensees holding valid Qt Enterprise Edition licenses may use this | 21 | ** Licensees holding valid Qt Enterprise Edition licenses may use this |
22 | ** file in accordance with the Qt Commercial License Agreement provided | 22 | ** file in accordance with the Qt Commercial License Agreement provided |
23 | ** with the Software. | 23 | ** with the Software. |
24 | ** | 24 | ** |
25 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE | 25 | ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE |
26 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. | 26 | ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. |
27 | ** | 27 | ** |
28 | ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for | 28 | ** See http://www.trolltech.com/pricing.html or email sales@trolltech.com for |
29 | ** information about Qt Commercial License Agreements. | 29 | ** information about Qt Commercial License Agreements. |
30 | ** See http://www.trolltech.com/qpl/ for QPL licensing information. | 30 | ** See http://www.trolltech.com/qpl/ for QPL licensing information. |
31 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. | 31 | ** See http://www.trolltech.com/gpl/ for GPL licensing information. |
32 | ** | 32 | ** |
33 | ** Contact info@trolltech.com if any conditions of this licensing are | 33 | ** Contact info@trolltech.com if any conditions of this licensing are |
34 | ** not clear to you. | 34 | ** not clear to you. |
35 | ** | 35 | ** |
36 | **********************************************************************/ | 36 | **********************************************************************/ |
37 | 37 | ||
38 | #include "project.h" | 38 | #include "project.h" |
39 | #include "option.h" | 39 | #include "option.h" |
40 | #include "makefile.h" | 40 | #include "makefile.h" |
41 | #include <qnamespace.h> | 41 | #include <qnamespace.h> |
42 | #include <qregexp.h> | 42 | #include <qregexp.h> |
43 | #include <qdir.h> | 43 | #include <qdir.h> |
44 | #include <stdio.h> | 44 | #include <stdio.h> |
45 | #include <stdlib.h> | 45 | #include <stdlib.h> |
46 | #include <ctype.h> | 46 | #include <ctype.h> |
47 | #include <fcntl.h> | 47 | #include <fcntl.h> |
48 | #include <sys/types.h> | 48 | #include <sys/types.h> |
49 | #include <sys/stat.h> | 49 | #include <sys/stat.h> |
50 | 50 | ||
51 | // for Borland, main is defined to qMain which breaks qmake | 51 | // for Borland, main is defined to qMain which breaks qmake |
52 | #undef main | 52 | #undef main |
53 | 53 | ||
54 | int main(int argc, char **argv) | 54 | 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++) { |
73 | if(Option::qmake_mode == Option::QMAKE_GENERATE_MAKEFILE || | 78 | if(Option::qmake_mode == Option::QMAKE_GENERATE_MAKEFILE || |
74 | Option::qmake_mode == Option::QMAKE_GENERATE_PRL) { | 79 | Option::qmake_mode == Option::QMAKE_GENERATE_PRL) { |
75 | QString fn = (*pfile); | 80 | QString fn = (*pfile); |
76 | 81 | ||
77 | //setup pwd properly | 82 | //setup pwd properly |
78 | debug_msg(1, "Resetting dir to: %s", oldpwd.latin1()); | 83 | debug_msg(1, "Resetting dir to: %s", oldpwd.latin1()); |
79 | QDir::setCurrent(oldpwd); //reset the old pwd | 84 | QDir::setCurrent(oldpwd); //reset the old pwd |
80 | int di = fn.findRev(Option::dir_sep); | 85 | int di = fn.findRev(Option::dir_sep); |
81 | if(di != -1) { | 86 | if(di != -1) { |
82 | debug_msg(1, "Changing dir to: %s", fn.left(di).latin1()); | 87 | debug_msg(1, "Changing dir to: %s", fn.left(di).latin1()); |
83 | if(!QDir::setCurrent(fn.left(fn.findRev(Option::dir_sep)))) | 88 | if(!QDir::setCurrent(fn.left(fn.findRev(Option::dir_sep)))) |
84 | fprintf(stderr, "Cannot find directory: %s\n", fn.left(di).latin1()); | 89 | fprintf(stderr, "Cannot find directory: %s\n", fn.left(di).latin1()); |
85 | fn = fn.right(fn.length() - di - 1); | 90 | fn = fn.right(fn.length() - di - 1); |
86 | } | 91 | } |
87 | 92 | ||
88 | /* read project.. */ | 93 | /* read project.. */ |
89 | if(!proj.read(fn, oldpwd)) { | 94 | if(!proj.read(fn, oldpwd)) { |
90 | fprintf(stderr, "Error processing project file: %s\n", | 95 | fprintf(stderr, "Error processing project file: %s\n", |
91 | fn == "-" ? "(stdin)" : (*pfile).latin1()); | 96 | fn == "-" ? "(stdin)" : (*pfile).latin1()); |
92 | exit_val = 2; | 97 | exit_val = 2; |
93 | continue; | 98 | continue; |
94 | } | 99 | } |
95 | if(Option::mkfile::do_preprocess) //no need to create makefile | 100 | if(Option::mkfile::do_preprocess) //no need to create makefile |
96 | continue; | 101 | continue; |
97 | 102 | ||
98 | /* let Option post-process */ | 103 | /* let Option post-process */ |
99 | if(!Option::postProcessProject(&proj)) { | 104 | if(!Option::postProcessProject(&proj)) { |
100 | fprintf(stderr, "Error post-processing project file: %s", | 105 | fprintf(stderr, "Error post-processing project file: %s", |
101 | fn == "-" ? "(stdin)" : (*pfile).latin1()); | 106 | fn == "-" ? "(stdin)" : (*pfile).latin1()); |
102 | exit_val = 8; | 107 | exit_val = 8; |
103 | continue; | 108 | continue; |
104 | } | 109 | } |
105 | } | 110 | } |
106 | 111 | ||
107 | bool using_stdout = FALSE; | 112 | bool using_stdout = FALSE; |
108 | MakefileGenerator *mkfile = MakefileGenerator::create(&proj); //figure out generator | 113 | MakefileGenerator *mkfile = MakefileGenerator::create(&proj); //figure out generator |
109 | if(mkfile && (Option::qmake_mode == Option::QMAKE_GENERATE_MAKEFILE || | 114 | if(mkfile && (Option::qmake_mode == Option::QMAKE_GENERATE_MAKEFILE || |
110 | Option::qmake_mode == Option::QMAKE_GENERATE_PROJECT)) { | 115 | Option::qmake_mode == Option::QMAKE_GENERATE_PROJECT)) { |
111 | //open output | 116 | //open output |
112 | if(!(Option::output.state() & IO_Open)) { | 117 | if(!(Option::output.state() & IO_Open)) { |