47
|
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:
|
|
15 |
#
|
|
16 |
|
|
17 |
QT += testlib
|
|
18 |
CONFIG += hb qtestlib
|
|
19 |
CONFIG += symbian_test
|
|
20 |
|
|
21 |
TEMPLATE = app
|
|
22 |
TARGET = ut_fminternalfmutils
|
|
23 |
|
|
24 |
include ( ../ut_common.pri )
|
|
25 |
include ( ../../../src/common.pri )
|
|
26 |
include ( ../../../src/inc/commoninc.pri )
|
|
27 |
include ( ../../../src/inc/commonutils.pri )
|
|
28 |
|
|
29 |
DEPENDPATH += .
|
|
30 |
INCLUDEPATH += .
|
|
31 |
|
|
32 |
#TARGET.CAPABILITY = ALL -TCB
|
|
33 |
TARGET.CAPABILITY = CAP_APPLICATION DiskAdmin AllFiles PowerMgmt
|
|
34 |
|
|
35 |
HEADERS += src/*.h
|
|
36 |
SOURCES += src/*.cpp
|
|
37 |
|
|
38 |
symbian:MMP_RULES += SMPSAFE
|
|
39 |
|
|
40 |
symbian {
|
|
41 |
deploy.path = C:
|
|
42 |
files.sources += data/Image.jpg \
|
|
43 |
data/Tone.mp3 \
|
|
44 |
data/unknow.unknow \
|
|
45 |
data/Imageformove.jpg
|
|
46 |
files.path = /data/resource/fmtestdata
|
|
47 |
DEPLOYMENT += files
|
|
48 |
|
|
49 |
# This is for new exporting system coming in garden
|
|
50 |
for(file, files.sources):BLD_INF_RULES.prj_exports += "./$$file $$deploy.path$$files.path/$$basename(file)"
|
|
51 |
}
|