equal
deleted
inserted
replaced
|
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 = glxdetailscustomwidgets |
|
20 CONFIG += hb |
|
21 DEFINES += BUILD_DETAILSCUSTOM |
|
22 |
|
23 win32{ |
|
24 CONFIG(release, debug|release){ |
|
25 TARGET = glxdetailscustomwidgets |
|
26 DESTDIR = ../release # for easy plugin loading |
|
27 }else{ |
|
28 TARGET = glxdetailscustomwidgetsd |
|
29 DESTDIR = ../debug # for easy plugin loading |
|
30 } |
|
31 } |
|
32 |
|
33 DEPENDPATH += ./inc \ |
|
34 ./src |
|
35 |
|
36 INCLUDEPATH += ./inc |
|
37 |
|
38 SOURCES += \ |
|
39 glxdetailsicon.cpp \ |
|
40 glxdetailstextedit.cpp |
|
41 |
|
42 HEADERS += \ |
|
43 glxdetailsicon.h \ |
|
44 glxdetailstextedit.h |
|
45 |
|
46 |
|
47 symbian { |
|
48 TARGET.UID3 = 0x2000A7BC |
|
49 TARGET.EPOCALLOWDLLDATA = 1 |
|
50 TARGET.CAPABILITY = CAP_GENERAL_DLL |
|
51 MMP_RULES += SMPSAFE |
|
52 |
|
53 LIBS += -lbafl |
|
54 } |
|
55 |
|
56 defBlock = \ |
|
57 "$${LITERAL_HASH}if defined(EABI)" \ |
|
58 "DEFFILE ../eabi/glxdetailscustomwidgets.def" \ |
|
59 "$${LITERAL_HASH}else" \ |
|
60 "DEFFILE ../bwins/glxdetailscustomwidgets.def" \ |
|
61 "$${LITERAL_HASH}endif" |
|
62 |
|
63 MMP_RULES += defBlock |
|
64 |
|
65 # End of file --Don't remove this |