Changeset 846 for trunk/qmake/option.h
- Timestamp:
- May 5, 2011, 5:36:53 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.7.2 (added) merged: 845 /branches/vendor/nokia/qt/current merged: 844 /branches/vendor/nokia/qt/4.6.3 removed
- Property svn:mergeinfo changed
-
trunk/qmake/option.h
r651 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 64 64 WarnParser = 0x01, 65 65 WarnLogic = 0x02, 66 WarnDeprecated = 0x04, 66 67 WarnAll = 0xFF 67 68 }; … … 107 108 //both of these must be called.. 108 109 static int init(int argc=0, char **argv=0); //parse cmdline 110 static void applyHostMode(); 109 111 static bool postProcessProject(QMakeProject *); 110 112 … … 149 151 static int debug_level; 150 152 static int warn_level; 151 static bool recursive; 153 enum QMAKE_RECURSIVE { QMAKE_RECURSIVE_DEFAULT, QMAKE_RECURSIVE_YES, QMAKE_RECURSIVE_NO }; 154 static QMAKE_RECURSIVE recursive; 152 155 static QStringList before_user_vars, after_user_vars, user_configs, after_user_configs; 153 enum TARG_MODE { TARG_UNIX_MODE, TARG_WIN_MODE, TARG_MACX_MODE, TARG_MAC9_MODE, TARG_OS2_MODE }; 156 enum HOST_MODE { HOST_UNKNOWN_MODE, HOST_UNIX_MODE, HOST_WIN_MODE, HOST_MACX_MODE, 157 HOST_OS2_MODE }; 158 static HOST_MODE host_mode; 159 enum TARG_MODE { TARG_UNKNOWN_MODE, TARG_UNIX_MODE, TARG_WIN_MODE, TARG_MACX_MODE, 160 TARG_SYMBIAN_MODE, TARG_OS2_MODE }; 154 161 static TARG_MODE target_mode; 162 static bool target_mode_overridden; 155 163 static QString user_template, user_template_prefix; 156 164 static QStringList shellPath; … … 206 214 SettingsPath, 207 215 DemosPath, 208 ExamplesPath 216 ExamplesPath, 217 ImportsPath 209 218 }; 210 219 static QString location(LibraryLocation);
Note:
See TracChangeset
for help on using the changeset viewer.