Changeset 136461 in webkit


Ignore:
Timestamp:
Dec 3, 2012, 5:38:59 PM (12 years ago)
Author:
pierre.rossi@gmail.com
Message:

[Qt] another stab at fixing the windows build

It seems the QT_BUILD_{TARGET}_LIB are not set as they should by qt_module.prf.
Define them by hand to be on the safe side.

.:

  • Source/widgetsapi.pri:

Source/WebKit:

  • WebKit1.pro:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/ChangeLog

    r136427 r136461  
     12012-12-03  Pierre Rossi  <pierre.rossi@digia.com>
     2
     3        [Qt] another stab at fixing the windows build
     4
     5        It seems the QT_BUILD_{TARGET}_LIB are not set as they should by qt_module.prf.
     6        Define them by hand to be on the safe side.
     7
     8        * Source/widgetsapi.pri:
     9
    1102012-12-03  Alexis Menard  <alexis@webkit.org>
    211
  • trunk/Source/WebKit/ChangeLog

    r136235 r136461  
     12012-12-03  Pierre Rossi  <pierre.rossi@digia.com>
     2
     3        [Qt] another stab at fixing the windows build
     4
     5        It seems the QT_BUILD_{TARGET}_LIB are not set as they should by qt_module.prf.
     6        Define them by hand to be on the safe side.
     7
     8        * WebKit1.pro:
     9
    1102012-11-30  Simon Hausmann  <simon.hausmann@digia.com>, Pierre Rossi  <pierre.rossi@digia.com>
    211
  • trunk/Source/WebKit/WebKit1.pro

    r136235 r136461  
    1212WEBKIT += wtf javascriptcore webcore
    1313QT += gui
     14
     15# This is relied upon by our export macros and seems not to be properly
     16# defined by the logic in qt_module.prf as it should
     17DEFINES += QT_BUILD_WEBKIT_LIB
    1418
    1519CONFIG += staticlib
  • trunk/Source/widgetsapi.pri

    r136384 r136461  
    1010TEMPLATE = lib
    1111TARGET = QtWebKitWidgets
     12
     13# This is relied upon by our export macros and seems not to be properly
     14# defined by the logic in qt_module.prf as it should
     15DEFINES += QT_BUILD_WEBKITWIDGETS_LIB
    1216
    1317WEBKIT_DESTDIR = $${ROOT_BUILD_DIR}/lib
Note: See TracChangeset for help on using the changeset viewer.