Changeset 38185 in webkit for trunk/JavaScriptCore/jsc.pro


Ignore:
Timestamp:
Nov 6, 2008, 10:41:27 AM (17 years ago)
Author:
[email protected]
Message:

2008-11-06 Peter Gal <[email protected]>

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:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.