31
|
1 |
# Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
2 |
# All rights reserved.
|
|
3 |
# This component and the accompanying materials are made available
|
|
4 |
# under the terms of "Eclipse Public License v1.0"
|
|
5 |
# which accompanies this distribution, and is available
|
|
6 |
# at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
#
|
|
8 |
# Initial Contributors:
|
|
9 |
# Nokia Corporation - initial contribution.
|
|
10 |
#
|
|
11 |
# Contributors:
|
|
12 |
#
|
|
13 |
# Description: Project file for FTU wizard model
|
|
14 |
#
|
|
15 |
|
|
16 |
TEMPLATE = lib
|
|
17 |
|
|
18 |
DEPENDPATH += . \
|
|
19 |
inc
|
|
20 |
INCLUDEPATH += . \
|
|
21 |
inc
|
|
22 |
|
|
23 |
TARGET = ftuwizardmodel
|
|
24 |
|
|
25 |
CONFIG += qt debug_and_release warn_on hb
|
|
26 |
INCLUDEPATH += ./inc
|
|
27 |
DEFINES += FTUWIZARDMODEL_LIB
|
|
28 |
QMAKE_CXXFLAGS.CW += -w error
|
|
29 |
|
|
30 |
# Input
|
|
31 |
HEADERS += ./inc/*.h
|
|
32 |
|
|
33 |
windows {
|
|
34 |
CONFIG(release, debug|release) {
|
|
35 |
DESTDIR = ../../bin/release/
|
|
36 |
OBJECTS_DIR = win32/release/obj
|
|
37 |
}
|
|
38 |
|
|
39 |
CONFIG(debug, debug|release) {
|
|
40 |
DESTDIR = ../../bin/debug/
|
|
41 |
OBJECTS_DIR = win32/debug/obj
|
|
42 |
}
|
|
43 |
}
|
|
44 |
|
|
45 |
symbian {
|
|
46 |
TARGET.UID3 = 0x20027009
|
|
47 |
TARGET.CAPABILITY = ALL -TCB
|
|
48 |
TARGET.EPOCALLOWDLLDATA = 1
|
|
49 |
# INCLUDEPATH += $$MW_LAYER_SYSTEMINCLUDE
|
|
50 |
}
|
|
51 |
|
|
52 |
#deployment configuration, deploy as a dll.
|
|
53 |
symbian {
|
|
54 |
deploy_ftuwizardmodel.sources = ftuwizardmodel.dll
|
|
55 |
deploy_ftuwizardmodel.path = \sys\bin
|
|
56 |
DEPLOYMENT += deploy_ftuwizardmodel
|
|
57 |
BLD_INF_RULES.prj_exports += \
|
|
58 |
"rom/ftuwizardmodel.iby CORE_MW_LAYER_IBY_EXPORT_PATH(ftuwizardmodel.iby)"
|
|
59 |
}
|
|
60 |
|
|
61 |
#ONLY FOR DEVELOPMENT! REMOVE THIS BEFORE EACH HS_Domain RELEASE!
|
|
62 |
symbian: MMP_RULES += EXPORTUNFROZEN
|