equal
deleted
inserted
replaced
|
1 # Copyright (c) 2009 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 # Initial Contributors: |
|
8 # Nokia Corporation - initial contribution. |
|
9 # Contributors: |
|
10 # Description: |
|
11 |
|
12 CONFIG += debug |
|
13 CONFIG += plugin |
|
14 CONFIG += hb |
|
15 TEMPLATE = lib |
|
16 TARGET = nmailuiwidgetsplugin |
|
17 QT += core |
|
18 |
|
19 INCLUDEPATH += . \ |
|
20 ./inc \ |
|
21 ../../inc \ |
|
22 ../nmailuiwidgets/inc |
|
23 |
|
24 HEADERS += inc/nmailuiwidgetsplugin.h |
|
25 |
|
26 SOURCES += src/nmailuiwidgetsplugin.cpp |
|
27 |
|
28 symbian*: { |
|
29 TARGET.EPOCALLOWDLLDATA = 1 |
|
30 TARGET.CAPABILITY = ALL \ |
|
31 -TCB |
|
32 TARGET.UID2 = 0x1000008D |
|
33 TARGET.UID3 = 0x2002C349 |
|
34 |
|
35 pluginstub.sources = nmailuiwidgetsplugin.dll |
|
36 pluginstub.path = /resource/plugins |
|
37 DEPLOYMENT += pluginstub |
|
38 LIBS += -lnmailuiwidgets.dll |
|
39 } |
|
40 |
|
41 win32 { |
|
42 DESTDIR = ../../bin |
|
43 LIBS += -L../../bin \ |
|
44 -lnmailuiwidgets |
|
45 } |
|
46 |