45
|
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 |
# programs, is protected by copyright controlled by Nokia. All
|
|
11 |
# rights are reserved. Copying, including reproducing, storing,
|
|
12 |
# adapting or translating, any or all of this material requires the
|
|
13 |
# prior written consent of Nokia. This material also contains
|
|
14 |
# confidential information which may not be disclosed to others
|
|
15 |
# without the prior written consent of Nokia.
|
|
16 |
# ============================================================================
|
|
17 |
#
|
|
18 |
# Description:
|
|
19 |
#
|
|
20 |
|
|
21 |
TEMPLATE = lib
|
|
22 |
TARGET = clockwidget
|
|
23 |
CONFIG += hb
|
|
24 |
DEFINES += CLOCKWIDGET_LIB
|
|
25 |
|
|
26 |
win32{
|
|
27 |
CONFIG(release, debug|release){
|
|
28 |
TARGET = clockwidget
|
|
29 |
DESTDIR = ../release # for easy plugin loading
|
|
30 |
}else{
|
|
31 |
TARGET = clockwidgetd
|
|
32 |
DESTDIR = ../debug # for easy plugin loading
|
|
33 |
}
|
|
34 |
}
|
|
35 |
|
57
|
36 |
DEPENDPATH += \
|
|
37 |
./inc \
|
|
38 |
./src
|
45
|
39 |
|
57
|
40 |
INCLUDEPATH += \
|
|
41 |
./inc \
|
|
42 |
./traces
|
45
|
43 |
|
|
44 |
SOURCES += \
|
|
45 |
clockwidget.cpp \
|
|
46 |
analogclockwidget.cpp \
|
|
47 |
digitalclockwidget.cpp
|
|
48 |
|
|
49 |
HEADERS += \
|
|
50 |
clockwidgetdefines.h \
|
|
51 |
clockwidget.h \
|
|
52 |
analogclockwidget.h \
|
|
53 |
digitalclockwidget.h
|
|
54 |
|
|
55 |
symbian {
|
|
56 |
TARGET.UID3 = 0x2002E715
|
|
57 |
TARGET.EPOCALLOWDLLDATA = 1
|
|
58 |
TARGET.CAPABILITY = CAP_GENERAL_DLL
|
|
59 |
LIBS += -lbafl
|
|
60 |
}
|
|
61 |
|
|
62 |
RESOURCES = clockwidgetimpl.qrc
|
|
63 |
|
|
64 |
# End of file --Don't remove this
|