9
|
1 |
#
|
|
2 |
# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
# All rights reserved.
|
|
4 |
# This component and the accompanying materials are made available
|
|
5 |
# under the terms of "Eclipse Public License v1.0"
|
|
6 |
# which accompanies this distribution, and is available
|
|
7 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
8 |
#
|
|
9 |
# Initial Contributors:
|
|
10 |
# Nokia Corporation - initial contribution.
|
|
11 |
#
|
|
12 |
# Contributors:
|
|
13 |
#
|
|
14 |
# Description: search test online project file
|
|
15 |
#
|
|
16 |
|
|
17 |
TEMPLATE = lib
|
|
18 |
CONFIG += plugin hb
|
|
19 |
TARGET = Bing
|
|
20 |
|
|
21 |
plugin.sources = Bing.dll
|
|
22 |
plugin.path = \resource\qt\plugins\onlinesearch
|
|
23 |
|
|
24 |
DEPLOYMENT += plugin
|
|
25 |
|
|
26 |
CONFIG(debug, debug|release) {
|
|
27 |
DESTDIR = debug
|
|
28 |
} else {
|
|
29 |
DESTDIR = release
|
|
30 |
}
|
|
31 |
|
|
32 |
win32 {
|
|
33 |
|
|
34 |
LIBS += -L$$PWD/../../../../bin/debug
|
|
35 |
}
|
|
36 |
|
|
37 |
|
|
38 |
|
|
39 |
CONFIG += plugin debug_and_release
|
|
40 |
|
|
41 |
QT += xml sql webkit network
|
|
42 |
|
|
43 |
|
|
44 |
|
|
45 |
coverage:DEFINES += COVERAGE_MEASUREMENT
|
|
46 |
|
|
47 |
DEPENDPATH += ./inc \
|
|
48 |
./src
|
|
49 |
|
|
50 |
INCLUDEPATH += ./inc/ \
|
|
51 |
|
|
52 |
symbian: {
|
|
53 |
TARGET.UID3 = 0x2002A532
|
|
54 |
TARGET.EPOCALLOWDLLDATA=1
|
|
55 |
TARGET.CAPABILITY = ALL -TCB -DRM
|
|
56 |
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
|
|
57 |
CONFIG += symbian_test
|
|
58 |
}
|
|
59 |
|
|
60 |
include(t_bingplugin.pri)
|
|
61 |
symbian:include(t_bingplugin_installs_symbian.pri)
|
|
62 |
win32:include(t_bingplugin_installs_win32.pri)
|
|
63 |
symbian:unix:include(t_bingplugin_installs_unix.pri)
|