source: webkit/trunk/Source/JavaScriptCore/jsc.pro@ 77098

Last change on this file since 77098 was 76496, checked in by [email protected], 14 years ago

2011-01-24 Andras Becsi <[email protected]>

Reviewed by Csaba Osztrogonác.

[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891

  • Source/DerivedSources.pro: Copied from DerivedSources.pro.
  • Source/WebKit.pri: Renamed from WebKit.pri.
  • Source/WebKit.pro: Added.
  • Source/common.pri: Renamed from common.pri.
  • WebKit.pro: Removed.

2011-01-24 Andras Becsi <[email protected]>

Reviewed by Csaba Osztrogonác.

[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891

2011-01-24 Andras Becsi <[email protected]>

Reviewed by Csaba Osztrogonác.

[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891

No new tests needed.

  • WebCore.pri:
  • WebCore.pro:

2011-01-24 Andras Becsi <[email protected]>

Reviewed by Csaba Osztrogonác.

[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891

  • declarative/declarative.pro:
  • docs/docs.pri:
  • tests/tests.pri:

2011-01-24 Andras Becsi <[email protected]>

Reviewed by Csaba Osztrogonác.

[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891

  • DerivedSources.pro:
  • WebKit2.pro:
  • WebProcess.pro:

2011-01-24 Andras Becsi <[email protected]>

Reviewed by Csaba Osztrogonác.

[Qt] Move project files into Source
https://bugs.webkit.org/show_bug.cgi?id=52891

  • DerivedSources.pro: Renamed from DerivedSources.pro.
  • DumpRenderTree/qt/DumpRenderTree.pro:
  • DumpRenderTree/qt/TestNetscapePlugin/TestNetscapePlugin.pro:
  • MiniBrowser/DerivedSources.pro:
  • MiniBrowser/qt/MiniBrowser.pro:
  • QtTestBrowser/QtTestBrowser.pro:
  • Scripts/webkitdirs.pm:
  • Tools.pro: Added.
  • WebKitTestRunner/DerivedSources.pro:
  • WebKitTestRunner/InjectedBundle/qt/InjectedBundle.pro:
  • WebKitTestRunner/qt/WebKitTestRunner.pro:
File size: 914 bytes
Line 
1TEMPLATE = app
2TARGET = jsc
3DESTDIR = .
4SOURCES = jsc.cpp
5QT -= gui
6CONFIG -= app_bundle
7CONFIG += building-libs
8win32-*: CONFIG += console
9win32-msvc*: CONFIG += exceptions_off stl_off
10
11isEmpty(OUTPUT_DIR): OUTPUT_DIR= ..
12include($$PWD/../WebKit.pri)
13
14unix:!mac:!symbian:CONFIG += link_pkgconfig
15
16QMAKE_RPATHDIR += $$OUTPUT_DIR/lib
17
18!CONFIG(release, debug|release) {
19 OBJECTS_DIR = obj/debug
20} else { # Release
21 OBJECTS_DIR = obj/release
22}
23OBJECTS_DIR_WTR = $$OBJECTS_DIR$${QMAKE_DIR_SEP}
24include($$PWD/JavaScriptCore.pri)
25addJavaScriptCoreLib(.)
26
27symbian {
28 TARGET.CAPABILITY = ReadUserData WriteUserData NetworkServices
29}
30
31mac {
32 LIBS_PRIVATE += -framework AppKit
33}
34
35wince* {
36 LIBS += mmtimer.lib
37}
38
39# Prevent warnings about difference in visibility on Mac OS X
40contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
41unix:contains(QT_CONFIG, reduce_relocations):CONFIG += bsymbolic_functions
Note: See TracBrowser for help on using the repository browser.