48
|
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 |
#
|
62
|
14 |
# Description:
|
48
|
15 |
#
|
|
16 |
|
62
|
17 |
#QT += testlib
|
48
|
18 |
QT -= gui
|
|
19 |
|
|
20 |
TEMPLATE = lib
|
|
21 |
|
62
|
22 |
CONFIG += hb
|
|
23 |
#CONFIG += qtestlib
|
|
24 |
CONFIG += symbian_test
|
48
|
25 |
TARGET = mmstestbed
|
|
26 |
|
|
27 |
INCLUDEPATH += .
|
|
28 |
INCLUDEPATH += inc
|
|
29 |
INCLUDEPATH += ../../../inc
|
62
|
30 |
|
48
|
31 |
INCLUDEPATH += ../../../../../../mmsengine/inc
|
62
|
32 |
INCLUDEPATH += ../../../../../../mmsengine/mmsserver/inc
|
|
33 |
INCLUDEPATH += ../../../../../../mmsengine/mmsmessage/inc
|
48
|
34 |
INCLUDEPATH += ../../../../../../mmsengine/mmscodec/inc
|
62
|
35 |
INCLUDEPATH += ../../../../../../inc
|
|
36 |
INCLUDEPATH += ../../../../../../mmsengine/mmsengine/inc
|
|
37 |
INCLUDEPATH += ../../../../../../../../mmsengine/inc
|
|
38 |
INCLUDEPATH += ../../../../../../../../mmsengine/mmscodec/inc
|
|
39 |
INCLUDEPATH += ../../../../../../../../mmsengine/mmshttptransport/inc
|
|
40 |
INCLUDEPATH += ../../../../../../../../mmsengine/mmsmessage/inc
|
|
41 |
INCLUDEPATH += ../../../../../../../../mmsengine/mmsconninit/inc
|
|
42 |
#INCLUDEPATH += ../../../../mmsengine/mmscodec/inc
|
|
43 |
INCLUDEPATH += ../../../../../../../../mmsengine/mmsserver/inc
|
48
|
44 |
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
|
|
45 |
|
|
46 |
DEFINES += BUILD_MMSTESTBED_DLL
|
|
47 |
|
|
48 |
SOURCES += src/mmstestbed.cpp \
|
|
49 |
src/mmsteststaticutils.cpp \
|
|
50 |
src/mmsreadfile.cpp \
|
|
51 |
src/mmstestuitimer.cpp
|
|
52 |
|
|
53 |
HEADERS += inc/mmstestbed.h \
|
|
54 |
inc/mmsteststaticutils.h \
|
|
55 |
inc/mmsreadfile.h \
|
|
56 |
inc/mmstestuitimer.h \
|
|
57 |
inc/mmstestbed.hrh
|
|
58 |
|
|
59 |
SYMBIAN_PLATFORMS = WINSCW ARMV5
|
|
60 |
|
62
|
61 |
defBlock = \
|
|
62 |
"$${LITERAL_HASH}if defined(EABI)" \
|
|
63 |
"DEFFILE eabi/mmstestbedu.def" \
|
|
64 |
"$${LITERAL_HASH}else" \
|
|
65 |
"DEFFILE bwins/mmstestbedu.def" \
|
|
66 |
"$${LITERAL_HASH}endif"
|
|
67 |
|
|
68 |
|
48
|
69 |
symbian {
|
|
70 |
TARGET.UID3 = 0xE5c588a1
|
|
71 |
TARGET.CAPABILITY = CAP_GENERAL_DLL
|
|
72 |
TARGET.EPOCSTACKSIZE = 0x8000
|
|
73 |
TARGET.EPOCHEAPSIZE = 0x1000 0x1F00000
|
62
|
74 |
TARGET.EPOCALLOWDLLDATA = 1
|
48
|
75 |
VENDORID = VID_DEFAULT
|
|
76 |
}
|
|
77 |
|
|
78 |
# Build.inf rules
|
|
79 |
BLD_INF_RULES.prj_exports += \
|
|
80 |
"$${LITERAL_HASH}include <platform_paths.hrh>"
|
|
81 |
|
|
82 |
LIBS += -lmsgs \
|
|
83 |
-lmmsmessage \
|
|
84 |
-lmmsconninit \
|
|
85 |
-lmmscodec \
|
|
86 |
-lmmsserversettings \
|
|
87 |
-lcentralrepository \
|
|
88 |
-lapparc \
|
|
89 |
-lbafl \
|
|
90 |
-lefsrv \
|
|
91 |
-lesock \
|
|
92 |
-lestor \
|
|
93 |
-leuser \
|
|
94 |
-llogcli \
|
|
95 |
-llogwrap \
|
|
96 |
-lapgrfx \
|
|
97 |
-lapmime
|