31
|
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 |
include(stubs/stubs.pri)
|
|
18 |
include(ut/ut.pri)
|
|
19 |
|
|
20 |
QT += testlib
|
|
21 |
CONFIG += hb qtestlib
|
|
22 |
|
|
23 |
TEMPLATE = app
|
|
24 |
TARGET = t_wlanwizard
|
|
25 |
|
|
26 |
DEPENDPATH += .
|
|
27 |
MOC_DIR = _moc
|
|
28 |
RCC_DIR = _resources
|
|
29 |
|
|
30 |
VERSION = 0.0.1
|
|
31 |
|
|
32 |
DEFINES += BUILD_WLAN_WIZARD_DLL
|
|
33 |
DEFINES += WLAN_WIZARD_RND
|
|
34 |
|
|
35 |
RESOURCES += ../resources/resource.qrc
|
|
36 |
|
|
37 |
INCLUDEPATH += \
|
|
38 |
stubs \
|
|
39 |
$$MW_LAYER_SYSTEMINCLUDE \
|
|
40 |
$$OS_LAYER_SYSTEMINCLUDE
|
|
41 |
|
|
42 |
# OST trace system requires traces directory to be in USERINCLUDES
|
|
43 |
MMP_RULES += "USERINCLUDE ../traces"
|
|
44 |
|
|
45 |
# WLAN WIZARD HEADERS
|
|
46 |
HEADERS += \
|
|
47 |
../inc/wlanwizard.h \
|
|
48 |
../inc/wlanwizard_p.h \
|
|
49 |
../inc/wlanwizardpage.h \
|
|
50 |
../inc/wlanwizardhelper.h \
|
|
51 |
../inc/wlanwizardutils.h \
|
|
52 |
../inc/wlanwizardpageinternal.h \
|
|
53 |
../inc/wlanwizardpagekeyquery.h \
|
|
54 |
../inc/wlanwizardpageprocessingsettings.h \
|
|
55 |
../inc/wlanwizardpagesummary.h \
|
|
56 |
../inc/wlanwizardsummaryviewitem.h \
|
|
57 |
../inc/wlanwizardpagegenericerror.h \
|
|
58 |
../inc/wlanwizardpagenetworkmode.h \
|
|
59 |
../inc/wlanwizardpagescanning.h \
|
|
60 |
../inc/wlanwizardpagesecuritymode.h \
|
|
61 |
../inc/wlanwizardpagessid.h
|
|
62 |
|
|
63 |
# WLAN WIZARD SOURCES
|
|
64 |
SOURCES += ../src/wlanwizard.cpp \
|
|
65 |
../src/wlanwizard_p.cpp \
|
|
66 |
../src/wlanwizardutils.cpp \
|
|
67 |
../src/wlanwizardpageinternal.cpp \
|
|
68 |
../src/wlanwizardpagekeyquery.cpp \
|
|
69 |
../src/wlanwizardpageprocessingsettings.cpp \
|
|
70 |
../src/wlanwizardpagesummary.cpp \
|
|
71 |
../src/wlanwizardsummaryviewitem.cpp \
|
|
72 |
../src/wlanwizardpagegenericerror.cpp \
|
|
73 |
../src/wlanwizardpagenetworkmode.cpp \
|
|
74 |
../src/wlanwizardpagescanning.cpp \
|
|
75 |
../src/wlanwizardpagesecuritymode.cpp \
|
|
76 |
../src/wlanwizardpagessid.cpp
|
|
77 |
|
|
78 |
symbian: {
|
|
79 |
TARGET.CAPABILITY = ALL -TCB
|
|
80 |
}
|
|
81 |
|
|
82 |
ict_result_enum_used: {
|
|
83 |
message(*** ict result enumerated instead of boolean.)
|
|
84 |
DEFINES+=ICT_RESULT_ENUM
|
|
85 |
}
|
|
86 |
|
|
87 |
coverage_test: {
|
|
88 |
message(*** Coverage test mode build - no OST traces.)
|
|
89 |
#NO_OST_TRACES flag is set
|
|
90 |
}
|
|
91 |
else {
|
|
92 |
message(*** Normal Symbian-mode build.)
|
|
93 |
} |