Changeset 513 for trunk/qmake


Ignore:
Timestamp:
Feb 4, 2010, 1:25:34 PM (15 years ago)
Author:
Dmitry A. Kuminov
Message:

qmake: Revert to a static build that doesn't depend on Qt DLLs to simplify the build process (other tools like moc.exe are static too so it makes even less sense to put the dependency on one of them).

Location:
trunk/qmake
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/qmake/Makefile.os2-g++

    r406 r513  
    3838endif
    3939
    40 OBJECTS_DIR = release-bootstrap
     40# make sure the output dir matches the one in qmake.pro
     41OBJECTS_DIR = release-shared
    4142
    4243# qmake code
  • trunk/qmake/qmake.pro

    r445 r513  
    44#platform than either of the generic makefiles
    55
    6 os2 {
    7   # using this .pro, we build non-bootstrapped qmake which links to Qt DLLs
    8   CONFIG += console
    9   CONFIG -= uic
    10 } else {
    11   CONFIG += console bootstrap
    12   CONFIG -= qt shared app_bundle uic
    13   DEFINES += QT_BUILD_QMAKE QT_BOOTSTRAPPED
    14   OBJECTS_DIR = .
    15   MOC_DIR = .
    16 }
     6CONFIG += console bootstrap
     7CONFIG -= qt shared app_bundle uic
     8DEFINES += QT_BUILD_QMAKE QT_BOOTSTRAPPED
    179DESTDIR = ../bin/
     10
     11OBJECTS_DIR = .
     12MOC_DIR = .
    1813
    1914#guts
Note: See TracChangeset for help on using the changeset viewer.