Changeset 879
- Timestamp:
- Jun 30, 2011, 9:39:51 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.cmd
r876 r879 1138 1138 --------------------------------------------------------------------------*/ 1139 1139 1140 if (G.CFG_WEBKIT == "auto") then do 1141 if (G.CFG_GUI == "no") then 1142 G.CFG_WEBKIT == "no" 1143 else do 1144 if (G.OfficialBuild) then 1145 G.CFG_WEBKIT = "yes" 1146 else do 1147 G.CFG_WEBKIT = "no" 1148 call SaySay G.EOL||, 1149 'Qt comes with the webkit module that provides a powerful framework for web-'G.EOL||, 1150 'based applications and may be required by some of them but it takes a very 'G.EOL||, 1151 'long time to compile and build (it will double the overall compilation time).' 1152 if (GetYesNo('Do you want to enable the webkit module?', 'N')) then do 1153 G.CFG_WEBKIT = "yes" 1154 end 1155 end 1156 end 1157 end 1140 if (G.CFG_WEBKIT == "auto") then 1141 G.CFG_WEBKIT = G.CFG_GUI 1158 1142 1159 1143 /*-------------------------------------------------------------------------- … … 1386 1370 1387 1371 if (G.CFG_WEBKIT == "yes") then do 1388 G.QT_CONFIG = Join(G.QT_CONFIG, "webkit") 1372 /* This include takes care of adding "webkit" to QT_CONFIG. */ 1373 call CopyFile G.RelPath"\src\3rdparty\webkit\WebKit\qt\qt_webkit_version.pri",, 1374 G.OutPath"\mkspecs\modules\qt_webkit_version.pri" 1375 if (G.CFG_WEBKIT == "debug") then 1376 G.QMAKE_CONFIG = Join(G.QMAKE_CONFIG, "webkit-debug") 1389 1377 if (G.CFG_JAVASCRIPTCORE_JIT == "yes") then 1390 1378 call QMakeVar "set", "JAVASCRIPTCORE_JIT", "yes" … … 1393 1381 end 1394 1382 else do 1383 call DeleteFile G.OutPath"\mkspecs\modules\qt_webkit_version.pri" 1395 1384 G.QCONFIG_FLAGS = Join(G.QCONFIG_FLAGS, "QT_NO_WEBKIT") 1396 1385 end
Note:
See TracChangeset
for help on using the changeset viewer.