- Timestamp:
- Feb 3, 2010, 4:47:59 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/configure.cmd
r495 r507 29 29 G.ScreenHeight = -1 30 30 G.Verbose = 1 31 31 32 32 33 /* initialize global variables */ … … 169 170 build = linein(G.RelPath"\official_build") 170 171 if (build \== "") then do 172 171 173 G.QT_BUILD_VERSION = build 172 174 G.QT_CONFIG = "official_build" … … 174 176 call SaySay "WARNING:" 175 177 call SaySay "You are going to configure an official build of Qt4 for OS/2!" 176 call SaySay "Full version number is: "G.QT_VERSION" -"G.QT_BUILD_VERSION178 call SaySay "Full version number is: "G.QT_VERSION""G.QT_BUILD_VERSION 177 179 call SaySay 178 180 call SaySay "If you understand what it means and want to continue," … … 459 461 /* detect build style */ 460 462 if (G.CFG_DEBUG == "auto") then do 461 G.CFG_DEBUG_RELEASE = "yes" 462 G.CFG_DEBUG = "yes" 463 if (G.OfficialBuild) then do 464 G.CFG_DEBUG_RELEASE = "no" 465 G.CFG_DEBUG = "no" 466 end 467 else do 468 G.CFG_DEBUG_RELEASE = "yes" 469 G.CFG_DEBUG = "yes" 470 end 463 471 end 464 472 if (G.CFG_DEBUG_RELEASE == "yes") then … … 1478 1486 if (G.CFG_DEBUG == "yes") then do 1479 1487 G.QTCONFIG_CONFIG = Join(G.QTCONFIG_CONFIG, "debug") 1480 if (G.CFG_DEBUG_RELEASE == "yes") then 1488 G.QT_CONFIG = Join(G.QT_CONFIG, "debug") 1489 if (G.CFG_DEBUG_RELEASE == "yes") then do 1490 G.QTCONFIG_CONFIG = Join(G.QTCONFIG_CONFIG, "debug_and_release") 1491 G.QTCONFIG_CONFIG = Join(G.QTCONFIG_CONFIG, "debug_and_release_target") 1481 1492 G.QT_CONFIG = Join(G.QT_CONFIG, "release") 1482 G.QT_CONFIG = Join(G.QT_CONFIG, "debug")1493 1483 1494 end 1484 1495 else if (G.CFG_DEBUG == "no") then do 1485 1496 G.QTCONFIG_CONFIG = Join(G.QTCONFIG_CONFIG, "release") 1486 if (G.CFG_DEBUG_RELEASE == "yes") then 1497 G.QT_CONFIG = Join(G.QT_CONFIG, "release") 1498 if (G.CFG_DEBUG_RELEASE == "yes") then do 1499 G.QTCONFIG_CONFIG = Join(G.QTCONFIG_CONFIG, "debug_and_release") 1500 G.QTCONFIG_CONFIG = Join(G.QTCONFIG_CONFIG, "debug_and_release_target") 1487 1501 G.QT_CONFIG = Join(G.QT_CONFIG, "debug") 1488 G.QT_CONFIG = Join(G.QT_CONFIG, "release")1502 1489 1503 end 1490 1504 -
trunk/mkspecs/os2-g++/qmake.conf
r417 r507 7 7 MAKEFILE_GENERATOR = GNUMAKE 8 8 TEMPLATE = app 9 CONFIG += qt warn_on release link_prl copy_dir_files debug_and_release debug_and_release_target9 CONFIG += qt warn_on release link_prl copy_dir_files 10 10 QT += core gui 11 11 # @todo
Note:
See TracChangeset
for help on using the changeset viewer.