Last change
on this file since 154038 was 128616, checked in by [email protected], 13 years ago |
[Qt] Make force_static_libs_as_shared work on Mac OS
We had to move a few LIBS += around that were in the wrong place,
and not caught when everything was just linked into the final
QtWebKit library.
Reviewed by Simon Hausmann.
|
File size:
819 bytes
|
Line | |
---|
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 |
|
---|
7 | TEMPLATE = app
|
---|
8 |
|
---|
9 | TARGET = jsc
|
---|
10 | DESTDIR = $${ROOT_BUILD_DIR}/bin
|
---|
11 |
|
---|
12 | QT -= gui
|
---|
13 |
|
---|
14 | win32-*: CONFIG += console
|
---|
15 | win32-msvc*: CONFIG += exceptions_off stl_off
|
---|
16 | win32-msvc*|win32-icc: INCLUDEPATH += $$ROOT_WEBKIT_DIR/Source/JavaScriptCore/os-win32
|
---|
17 |
|
---|
18 | WEBKIT += javascriptcore wtf
|
---|
19 |
|
---|
20 | SOURCES = jsc.cpp
|
---|
21 |
|
---|
22 | win32-* {
|
---|
23 | LIBS += -ladvapi32
|
---|
24 | }
|
---|
25 |
|
---|
26 | wince* {
|
---|
27 | LIBS += mmtimer.lib
|
---|
28 | }
|
---|
29 |
|
---|
30 | # Prevent warnings about difference in visibility on Mac OS X
|
---|
31 | contains(QT_CONFIG, reduce_exports):CONFIG += hide_symbols
|
---|
32 | unix:contains(QT_CONFIG, reduce_relocations):CONFIG += bsymbolic_functions
|
---|
33 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.