|
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 = glxdetailscustomplugin |
|
20 |
|
21 win32{ |
|
22 CONFIG(release, debug|release){ |
|
23 TARGET = glxdetailscustomplugin |
|
24 } else { |
|
25 TARGET = glxdetailscustomplugind |
|
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 -lglxdetailscustomwidgets |
|
35 } else { |
|
36 DESTDIR = ../debug # for easy plugin loading |
|
37 LIBS += -L../debug -lglxdetailscustomwidgetsd |
|
38 } |
|
39 } |
|
40 |
|
41 SOURCES += \ |
|
42 main.cpp |
|
43 |
|
44 INCLUDEPATH += \ |
|
45 ../detailscustomwidgets |
|
46 |
|
47 symbian: { |
|
48 TARGET.UID3 = 0x200071B7 |
|
49 TARGET.EPOCALLOWDLLDATA=1 |
|
50 TARGET.CAPABILITY = CAP_GENERAL_DLL |
|
51 MMP_RULES += SMPSAFE |
|
52 |
|
53 |
|
54 LIBS += \ |
|
55 -lglxdetailscustomwidgets.dll |
|
56 |
|
57 pluginstub.sources = glxdetailscustomplugin.dll |
|
58 pluginstub.path = /resource/plugins |
|
59 DEPLOYMENT += pluginstub |
|
60 DESTDIR = $$HB_PLUGINS_DIR |
|
61 } |
|
62 |
|
63 !local { |
|
64 target.path = $$HB_PLUGINS_DIR |
|
65 INSTALLS += target |
|
66 } |
|
67 |
|
68 # End of file --Don't remove this. |