|
1 # |
|
2 # Copyright (c) 2009-2010 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 # WLAN Settings Wizard |
|
16 # |
|
17 |
|
18 TEMPLATE = lib |
|
19 TARGET = wlanwizard |
|
20 |
|
21 DEFINES += BUILD_WLAN_WIZARD_DLL |
|
22 |
|
23 VERSION = 0.0.1 |
|
24 |
|
25 CONFIG += hb |
|
26 |
|
27 MOC_DIR = build |
|
28 RCC_DIR = build |
|
29 |
|
30 RESOURCES += resources/resource.qrc |
|
31 |
|
32 TRANSLATIONS = wlanwizard.ts |
|
33 |
|
34 HEADERS += \ |
|
35 inc/wlanwizard.h \ |
|
36 inc/wlanwizard_p.h \ |
|
37 inc/wlanwizardscanlist.h \ |
|
38 inc/wlanwizardhelper.h \ |
|
39 inc/wlanwizardpage.h \ |
|
40 inc/wlanwizardpagegenericerror.h \ |
|
41 inc/wlanwizardpageinternal.h \ |
|
42 inc/wlanwizardpagekeyquery.h \ |
|
43 inc/wlanwizardpagenetworkmode.h \ |
|
44 inc/wlanwizardpageprocessingsettings.h \ |
|
45 inc/wlanwizardpagescanning.h \ |
|
46 inc/wlanwizardpagesecuritymode.h \ |
|
47 inc/wlanwizardpagessid.h \ |
|
48 inc/wlanwizardpagesummary.h \ |
|
49 inc/wlanwizardsummaryviewitem.h \ |
|
50 inc/wlanwizardutils.h |
|
51 |
|
52 SOURCES += \ |
|
53 src/wlanwizard.cpp \ |
|
54 src/wlanwizard_p.cpp \ |
|
55 src/wlanwizardscanlist.cpp \ |
|
56 src/wlanwizardpagegenericerror.cpp \ |
|
57 src/wlanwizardpageinternal.cpp \ |
|
58 src/wlanwizardpagekeyquery.cpp \ |
|
59 src/wlanwizardpagenetworkmode.cpp \ |
|
60 src/wlanwizardpageprocessingsettings.cpp \ |
|
61 src/wlanwizardpagescanning.cpp \ |
|
62 src/wlanwizardpagesecuritymode.cpp \ |
|
63 src/wlanwizardpagessid.cpp \ |
|
64 src/wlanwizardpagesummary.cpp \ |
|
65 src/wlanwizardsummaryviewitem.cpp \ |
|
66 src/wlanwizardutils.cpp |
|
67 |
|
68 LIBS += \ |
|
69 -lwlanqtutilities \ |
|
70 -leapwizard \ |
|
71 -lwpswizard |
|
72 |
|
73 symbian { |
|
74 INCLUDEPATH += \ |
|
75 inc \ |
|
76 ..\inc |
|
77 |
|
78 TARGET.UID3 = 0x2002C39A |
|
79 TARGET.CAPABILITY = CAP_GENERAL_DLL |
|
80 TARGET.EPOCALLOWDLLDATA = 1 |
|
81 |
|
82 # Localition of directories for def files |
|
83 defFilePath = . |
|
84 |
|
85 # OST trace system requires traces directory to be in USERINCLUDES |
|
86 MMP_RULES += "USERINCLUDE traces" |
|
87 |
|
88 BLD_INF_RULES.prj_exports += \ |
|
89 "rom/wlanwizard.iby CORE_MW_LAYER_IBY_EXPORT_PATH(wlanwizard.iby)" |
|
90 |
|
91 BLD_INF_RULES.prj_exports += \ |
|
92 "rom/wlanwizard_resources.iby LANGUAGE_APP_LAYER_IBY_EXPORT_PATH(wlanwizard_resources.iby)" |
|
93 |
|
94 # Export wlanwizard and wlanwizard plugin apis |
|
95 BLD_INF_RULES.prj_exports += \ |
|
96 "inc/wlanwizard.h |../inc/wlanwizard.h" \ |
|
97 "inc/wlanwizardhelper.h |../inc/wlanwizardhelper.h" \ |
|
98 "inc/wlanwizardpage.h |../inc/wlanwizardpage.h" \ |
|
99 "inc/wlanwizardplugin.h |../inc/wlanwizardplugin.h" |
|
100 } |