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