Changeset 38185 in webkit


Ignore:
Timestamp:
Nov 6, 2008 10:41:27 AM (15 years ago)
Author:
cwzwarich@webkit.org
Message:

2008-11-06 Peter Gal <galpeter@inf.u-szeged.hu>

Reviewed by Cameron Zwarich.

Bug 22099: Make the Qt port build the JSC shell in the correct place
<https://bugs.webkit.org/show_bug.cgi?id=22099>

Adjust include paths and build destination dir for the 'jsc' executable
in the Qt build.

  • jsc.pro:
Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r38181 r38185  
     12008-11-06  Peter Gal  <galpeter@inf.u-szeged.hu>
     2
     3        Reviewed by Cameron Zwarich.
     4
     5        Bug 22099: Make the Qt port build the JSC shell in the correct place
     6        <https://bugs.webkit.org/show_bug.cgi?id=22099>
     7
     8        Adjust include paths and build destination dir for the 'jsc' executable
     9        in the Qt build.
     10
     11        * jsc.pro:
     12
    1132008-11-06  Kristian Amlie  <kristian.amlie@nokia.com>
    214
  • trunk/JavaScriptCore/jsc.pro

    r38163 r38185  
    11TEMPLATE = app
    22TARGET = jsc
    3 DESTDIR = ..
     3DESTDIR = .
    44SOURCES = jsc.cpp
    55QT -= gui
    6 INCLUDEPATH += $$PWD/.. \
    7     $$PWD \
    8     $$PWD/../bindings \
    9     $$PWD/../bindings/c \
    10     $$PWD/../wtf \
    11     $$PWD/../VM
     6INCLUDEPATH += $$PWD \
     7    $$PWD/kjs \
     8    $$PWD/bindings \
     9    $$PWD/bindings/c \
     10    $$PWD/wtf \
     11    $$PWD/VM
    1212CONFIG -= app_bundle
    1313DEFINES += BUILDING_QT__
     
    2424QMAKE_RPATHDIR += $$OUTPUT_DIR/lib
    2525
    26 isEmpty(OUTPUT_DIR):OUTPUT_DIR=$$PWD/../..
     26isEmpty(OUTPUT_DIR):OUTPUT_DIR=$$PWD/..
    2727include($$OUTPUT_DIR/config.pri)
    2828OBJECTS_DIR = tmp
Note: See TracChangeset for help on using the changeset viewer.