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 application project file
|
|
15 |
#
|
|
16 |
|
|
17 |
TEMPLATE = app
|
|
18 |
|
|
19 |
TARGET = Searchapplication
|
|
20 |
|
|
21 |
win32 {
|
|
22 |
LIBS += -L$$PWD/../../bin/debug
|
|
23 |
|
|
24 |
CONFIG(debug, debug|release) {
|
|
25 |
SUBDIRPART = debug
|
|
26 |
} else {
|
|
27 |
SUBDIRPART = release
|
|
28 |
}
|
|
29 |
DESTDIR = $$PWD/../../bin/$$SUBDIRPART
|
|
30 |
}
|
|
31 |
|
|
32 |
LIBS += -lsearchruntimeprovider
|
|
33 |
|
|
34 |
QT += xml
|
|
35 |
|
|
36 |
CONFIG += hb
|
|
37 |
CONFIG += console
|
|
38 |
CONFIG += hb console mobility
|
|
39 |
|
13
|
40 |
TRANSLATIONS += search.ts
|
9
|
41 |
nft:DEFINES += NFT
|
|
42 |
|
|
43 |
DEPENDPATH += . \
|
|
44 |
./inc \
|
|
45 |
./src
|
|
46 |
|
|
47 |
INCLUDEPATH += . \
|
|
48 |
./inc \
|
|
49 |
../inc \
|
|
50 |
../runtimeproviders/searchruntimeprovider/inc
|
|
51 |
|
|
52 |
symbian {
|
|
53 |
TARGET.UID2 = 0x100039CE
|
|
54 |
TARGET.UID3 = 0x2002C377
|
|
55 |
TARGET.CAPABILITY = CAP_APPLICATION AllFiles TrustedUI
|
|
56 |
TARGET.EPOCSTACKSIZE = 0x14000 // 80kB
|
|
57 |
TARGET.EPOCHEAPSIZE = 0x20000 0x800000 // 128kB - 16MB
|
|
58 |
rom:DEFINES += ROM
|
|
59 |
SKINICON = qtg_large_search
|
|
60 |
INCLUDEPATH += $$MW_LAYER_SYSTEMINCLUDE
|
|
61 |
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
|
|
62 |
}
|
|
63 |
|
|
64 |
win32 {
|
|
65 |
include(searchapplication_installs_win32.pri)
|
|
66 |
}
|
|
67 |
|
|
68 |
include(searchapplication.pri)
|