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 |
|
18 INCLUDEPATH += ./inc \ |
|
19 ../../inc |
|
20 |
|
21 HEADERS += inc/nmailuiwidgetsplugin.h |
|
22 |
|
23 SOURCES += src/nmailuiwidgetsplugin.cpp |
|
24 |
|
25 symbian*: { |
|
26 TARGET.EPOCALLOWDLLDATA = 1 |
|
27 TARGET.CAPABILITY = ALL \ |
|
28 -TCB |
|
29 TARGET.UID2 = 0x1000008D |
|
30 TARGET.UID3 = 0x2002C349 |
|
31 |
|
32 pluginstub.sources = nmailuiwidgetsplugin.dll |
|
33 pluginstub.path = /resource/plugins |
|
34 DEPLOYMENT += pluginstub |
|
35 LIBS += -lnmailuiwidgets.dll |
|
36 } |
|
37 |
|
38 win32 { |
|
39 DESTDIR = ../../bin |
|
40 LIBS += -L../../bin \ |
|
41 -lnmailuiwidgets |
|
42 } |
|