|
1 # |
|
2 ############################################################################# |
|
3 ## |
|
4 ## Copyright (C) 2008-2010 Nokia Corporation and/or its subsidiary(-ies). |
|
5 ## All rights reserved. |
|
6 ## Contact: Nokia Corporation (developer.feedback@nokia.com) |
|
7 ## |
|
8 ## This file is part of the UI Extensions for Mobile. |
|
9 ## |
|
10 ## GNU Lesser General Public License Usage |
|
11 ## This file may be used under the terms of the GNU Lesser General Public |
|
12 ## License version 2.1 as published by the Free Software Foundation and |
|
13 ## appearing in the file LICENSE.LGPL included in the packaging of this file. |
|
14 ## Please review the following information to ensure the GNU Lesser General |
|
15 ## Public License version 2.1 requirements will be met: |
|
16 ## http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
|
17 ## |
|
18 ## In addition, as a special exception, Nokia gives you certain additional |
|
19 ## rights. These rights are described in the Nokia Qt LGPL Exception |
|
20 ## version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
|
21 ## |
|
22 ## If you have questions regarding the use of this file, please contact |
|
23 ## Nokia at developer.feedback@nokia.com. |
|
24 ## |
|
25 ############################################################################# |
|
26 # |
|
27 |
|
28 TEMPLATE = lib |
|
29 TARGET = $$hbLibraryTarget(HbDeviceProgressDialogPlugin) |
|
30 CONFIG += plugin |
|
31 |
|
32 # directories |
|
33 INCLUDEPATH += . |
|
34 DEPENDPATH += . |
|
35 DESTDIR = $${HB_BUILD_DIR}/plugins/devicedialogs |
|
36 |
|
37 # dependencies |
|
38 hbAddLibrary(hbcore/HbCore) |
|
39 hbAddLibrary(hbwidgets/HbWidgets) |
|
40 |
|
41 HEADERS += $$PWD/hbdeviceprogressdialogplugin_p.h |
|
42 HEADERS += $$PWD/hbdeviceprogressdialogwidget_p.h |
|
43 |
|
44 SOURCES += $$PWD/hbdeviceprogressdialogplugin.cpp |
|
45 SOURCES += $$PWD/hbdeviceprogressdialogwidget.cpp |
|
46 |
|
47 symbian { |
|
48 TARGET.EPOCALLOWDLLDATA=1 |
|
49 TARGET.CAPABILITY = CAP_GENERAL_DLL |
|
50 TARGET.UID3 = 0x20022FC8 |
|
51 |
|
52 hblib.sources = Hb.dll |
|
53 hblib.path = \sys\bin |
|
54 hblib.depends = "(0xEEF9EA38), 1, 0, 0, {\"Hb\"}" |
|
55 |
|
56 pluginstub.sources = HbDeviceProgressDialogPlugin.dll |
|
57 pluginstub.path = /resource/plugins/devicedialogs |
|
58 DEPLOYMENT += pluginstub |
|
59 } |
|
60 |
|
61 !local { |
|
62 target.path = $${HB_PLUGINS_DIR}/devicedialogs |
|
63 INSTALLS += target |
|
64 } |
|
65 |
|
66 include($${HB_SOURCE_DIR}/src/hbcommon.pri) |