This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
# header files and dependencies |
| 2 |
INCLUDEPATH += $$PWD/common |
| 3 |
DEPENDPATH += $$PWD/common |
| 4 |
QT += testlib \ |
| 5 |
network \ |
| 6 |
webkit \ |
| 7 |
sql |
| 8 |
|
| 9 |
# install target |
| 10 |
isEmpty(INSTALL_DIR):INSTALL_DIR = $$[QT_INSTALL_BINS] |
| 11 |
target.path += $$INSTALL_DIR/qtwebkit-benchmark |
| 12 |
INSTALLS += target |
| 13 |
|
| 14 |
INCLUDEPATH += $$PWD/common |
| 15 |
debug_and_release: { |
| 16 |
CONFIG(debug, debug|release) QMAKE_LIBDIR += $$PWD/common/debug |
| 17 |
else: QMAKE_LIBDIR += $$PWD/common/release |
| 18 |
} else: |
| 19 |
QMAKE_LIBDIR += $$PWD/common |
| 20 |
|
| 21 |
!symbian: { |
| 22 |
LIBS += -lcommon |
| 23 |
} |
| 24 |
|
| 25 |
symbian: { |
| 26 |
LIBS += -lcommon.lib -lhal -lesock -linsock |
| 27 |
|
| 28 |
TARGET.EPOCALLOWDLLDATA = 1 |
| 29 |
TARGET.EPOCSTACKSIZE = 0x14000 |
| 30 |
TARGET.EPOCHEAPSIZE = 0x20000 \ |
| 31 |
0x10000000 \ |
| 32 |
// \ |
| 33 |
Min \ |
| 34 |
128kB, \ |
| 35 |
Max \ |
| 36 |
256MB |
| 37 |
TARGET.CAPABILITY = NetworkServices LocalServices ReadUserData WriteUserData UserEnvironment |
| 38 |
} |
| 39 |
|
| 40 |
# Don't use Application bundles on Mac OS X |
| 41 |
CONFIG -= app_bundle |