]> git.saurik.com Git - apple/javascriptcore.git/blame - jsc.pro
JavaScriptCore-1097.3.tar.gz
[apple/javascriptcore.git] / jsc.pro
CommitLineData
6fe7ccc8
A
1# -------------------------------------------------------------------
2# Project file for the jsc binary (interactive interpreter)
3#
4# See 'Tools/qmake/README' for an overview of the build system
5# -------------------------------------------------------------------
6
9dae56ea 7TEMPLATE = app
6fe7ccc8 8
9dae56ea 9TARGET = jsc
6fe7ccc8
A
10DESTDIR = $${ROOT_BUILD_DIR}/bin
11
9dae56ea 12QT -= gui
6fe7ccc8 13
f9bf01c6
A
14win32-*: CONFIG += console
15win32-msvc*: CONFIG += exceptions_off stl_off
6fe7ccc8 16win32-msvc*|win32-icc: INCLUDEPATH += $$ROOT_WEBKIT_DIR/Source/JavaScriptCore/os-win32
9dae56ea 17
6fe7ccc8 18WEBKIT += javascriptcore wtf
9dae56ea 19
6fe7ccc8 20SOURCES = jsc.cpp
f9bf01c6
A
21
22mac {
23 LIBS_PRIVATE += -framework AppKit
14957cd0
A
24}
25
26win* {
27 LIBS += -ladvapi32
28}
29
30wince* {
31 LIBS += mmtimer.lib
32}
33
34# Prevent warnings about difference in visibility on Mac OS X
35contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
36unix:contains(QT_CONFIG, reduce_relocations):CONFIG += bsymbolic_functions
6fe7ccc8 37