|
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 TEMPLATE = lib |
|
18 CONFIG += plugin |
|
19 CONFIG += hb |
|
20 TARGET = $$qtLibraryTarget(cntexampleactionsplugin) |
|
21 DEPENDPATH += . |
|
22 INCLUDEPATH += . |
|
23 |
|
24 # Input |
|
25 HEADERS += \ |
|
26 inc/cntexampleactionfactory.h \ |
|
27 inc/cntexamplebaseaction.h \ |
|
28 inc/cntexampleaction.h \ |
|
29 inc/cntexample2action.h \ |
|
30 inc/cntexamplenodetailaction.h \ |
|
31 inc/cntexampledynamicaction.h |
|
32 |
|
33 SOURCES += \ |
|
34 src/cntexampleactionfactory.cpp \ |
|
35 src/cntexamplebaseaction.cpp \ |
|
36 src/cntexampleaction.cpp \ |
|
37 src/cntexample2action.cpp \ |
|
38 src/cntexamplenodetailaction.cpp \ |
|
39 src/cntexampledynamicaction.cpp |
|
40 MOC_DIR = moc |
|
41 |
|
42 symbian: |
|
43 { |
|
44 load(data_caging_paths) |
|
45 TARGET.CAPABILITY = CAP_GENERAL_DLL |
|
46 TARGET.EPOCALLOWDLLDATA = 1 |
|
47 TARGET.UID3 = 0xefa11113 |
|
48 INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE |
|
49 LIBS += -lQtContacts \ |
|
50 -lxqservice |
|
51 target.path = /sys/bin |
|
52 INSTALLS += target |
|
53 symbianplugin.sources = $${TARGET}.dll |
|
54 symbianplugin.path = /resource/qt/plugins/contacts |
|
55 DEPLOYMENT += symbianplugin |
|
56 } |