equal
deleted
inserted
replaced
|
1 # |
|
2 # Copyright (c) 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 # Test application for wizards |
|
16 # |
|
17 |
|
18 |
|
19 TEMPLATE = app |
|
20 TARGET = testwizard |
|
21 CONFIG += hb |
|
22 |
|
23 MOC_DIR = build |
|
24 RCC_DIR = build |
|
25 |
|
26 DEPENDPATH += . |
|
27 INCLUDEPATH += . \ |
|
28 ../inc |
|
29 |
|
30 HEADERS = inc/MyApplication.h \ |
|
31 inc/MyAppMainWindow.h \ |
|
32 inc/FirstView.h \ |
|
33 inc/MyAppEngine.h |
|
34 |
|
35 SOURCES += src/MyAppEngine.cpp \ |
|
36 src/MyApplication.cpp \ |
|
37 src/MyAppMainWindow.cpp \ |
|
38 src/FirstView.cpp \ |
|
39 src/main.cpp |
|
40 |
|
41 RESOURCES = resources/resource.qrc |
|
42 |
|
43 symbian { |
|
44 # TODO: gain UID |
|
45 TARGET.UID3 = 0xE5C15256 |
|
46 TARGET.CAPABILITY = ALL -TCB |
|
47 } |
|
48 |
|
49 LIBS += -lwlanwizard |
|
50 |
|
51 myDependencies.sources = wlanwizard.dll eapwizard.dll wpswizard.dll wlanqtutilities.dll |
|
52 DEPLOYMENT += myDependencies |
|
53 |
|
54 BLD_INF_RULES.prj_exports += \ |
|
55 "rom/testwizard.iby CORE_MW_LAYER_IBY_EXPORT_PATH(testwizard.iby)" |
|
56 |