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 |
|
18 TEMPLATE = lib |
|
19 TARGET = detailsdescriptioneditplugin |
|
20 |
|
21 win32{ |
|
22 CONFIG(release, debug|release){ |
|
23 TARGET = detailsdescriptioneditplugin |
|
24 } else { |
|
25 TARGET = detailsdescriptioneditplugind |
|
26 } |
|
27 } |
|
28 |
|
29 CONFIG += hb plugin |
|
30 |
|
31 win32{ |
|
32 CONFIG(release, debug|release){ |
|
33 DESTDIR = ../release # for easy plugin loading |
|
34 LIBS += -L../release -ldetailsdescriptionedit |
|
35 } else { |
|
36 DESTDIR = ../debug # for easy plugin loading |
|
37 LIBS += -L../debug -ldetailsdescriptioneditd |
|
38 } |
|
39 } |
|
40 |
|
41 SOURCES += \ |
|
42 main.cpp |
|
43 |
|
44 INCLUDEPATH += \ |
|
45 ../detailsdescriptionedit \ |
|
46 ../detailsdescriptionedit/inc |
|
47 |
|
48 symbian: { |
|
49 TARGET.UID3 = 0x2000A774 |
|
50 TARGET.EPOCALLOWDLLDATA=1 |
|
51 TARGET.CAPABILITY = CAP_GENERAL_DLL |
|
52 MMP_RULES += SMPSAFE |
|
53 |
|
54 |
|
55 LIBS += \ |
|
56 -ldetailsdescriptionedit.dll |
|
57 |
|
58 pluginstub.sources = detailsdescriptioneditplugin.dll |
|
59 pluginstub.path = /resource/plugins |
|
60 DEPLOYMENT += pluginstub |
|
61 DESTDIR = $$HB_PLUGINS_DIR |
|
62 } |
|
63 |
|
64 !local { |
|
65 target.path = $$HB_PLUGINS_DIR |
|
66 INSTALLS += target |
|
67 } |
|
68 |
|
69 # End of file --Don't remove this. |
|