equal
deleted
inserted
replaced
|
1 # Copyright (c) 2000 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: Implementation of policymanagement components |
|
14 |
|
15 |
|
16 TEMPLATE = lib |
|
17 TARGET = PolicyEngUINotifiersplugin |
|
18 CONFIG += hb\ |
|
19 plugin |
|
20 |
|
21 DESTDIR = $${HB_BUILD_DIR}/plugins/devicedialogs |
|
22 |
|
23 QT += core \ |
|
24 gui |
|
25 HEADERS += ./inc/PolicyEngUINotifierplugin.h \ |
|
26 ./inc/PolicyEngineUI.h |
|
27 SOURCES += ./src/PolicyEngNotifierplugin.cpp \ |
|
28 ./src/PolicyEngineUI.cpp |
|
29 RESOURCES += PolicyEngineUI.qrc |
|
30 LIBS += -lflogger |
|
31 |
|
32 symbian: { |
|
33 TARGET.EPOCALLOWDLLDATA = 1 |
|
34 TARGET.CAPABILITY = CAP_GENERAL_DLL |
|
35 TARGET.UID3 = 0x10207817 |
|
36 |
|
37 hblib.sources = Hb.dll |
|
38 hblib.path = \sys\bin |
|
39 hblib.depends = "(0xEEF9EA38), 1, 0, 0, {\"Hb\"}" |
|
40 |
|
41 pluginstub.sources = PolicyEngUINotifiersplugin.dll |
|
42 pluginstub.path = /resource/plugins/devicedialogs |
|
43 DEPLOYMENT += pluginstub |
|
44 } |
|
45 !local { |
|
46 target.path = $${HB_PLUGINS_DIR}/devicedialogs |
|
47 INSTALLS += target |
|
48 } |
|
49 |