43
|
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 |
TEMPLATE = lib
|
|
18 |
TARGET = glxviewutilities
|
|
19 |
|
|
20 |
DEPENDPATH += . settingutiliy/inc settingutility/src
|
|
21 |
CONFIG += hb
|
|
22 |
|
|
23 |
LIBS += -lxqsettingsmanager
|
|
24 |
|
|
25 |
DEFINES += BUILD_GLXVIEWUTILITIES
|
|
26 |
|
|
27 |
INCLUDEPATH += . ../inc \
|
|
28 |
../../inc \
|
|
29 |
../../loggers/loggerqt/inc \
|
|
30 |
../../traces \
|
|
31 |
/epoc32/include/mw/hgwidgets
|
|
32 |
|
|
33 |
symbian: {
|
|
34 |
TARGET.UID3 = 0x2000718E
|
|
35 |
INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
|
|
36 |
TARGET.EPOCALLOWDLLDATA = 1
|
|
37 |
TARGET.CAPABILITY = ALL -TCB
|
45
|
38 |
MMP_RULES += SMPSAFE
|
43
|
39 |
}
|
|
40 |
|
|
41 |
# Input
|
|
42 |
HEADERS += settingutility/inc/glxsetting.h \
|
|
43 |
settingutility/inc/glxsettinginterface.h \
|
|
44 |
effectplugin/inc/glxeffectpluginbase.h \
|
|
45 |
effectplugin/inc/glxfadeeffectplugin.h \
|
|
46 |
effectplugin/inc/glxflipeffectplugin.h \
|
|
47 |
effectplugin/inc/glxzoominoutplugin.h \
|
45
|
48 |
effectplugin/inc/glxhelixeffectplugin.h \
|
43
|
49 |
effectplugin/inc/glxeffectpluginresolver.h \
|
|
50 |
effectengine/inc/glxtransitioneffect.h \
|
|
51 |
effectengine/inc/glxeffectengine.h
|
|
52 |
|
|
53 |
SOURCES += settingutility/src/glxsetting.cpp \
|
|
54 |
settingutility/src/glxsettinginterface.cpp \
|
|
55 |
effectplugin/src/glxfadeeffectplugin.cpp \
|
|
56 |
effectplugin/src/glxflipeffectplugin.cpp \
|
|
57 |
effectplugin/src/glxzoominoutplugin.cpp \
|
45
|
58 |
effectplugin/src/glxhelixeffectplugin.cpp \
|
43
|
59 |
effectplugin/src/glxeffectpluginresolver.cpp \
|
|
60 |
effectengine/src/glxtransitioneffect.cpp \
|
|
61 |
effectengine/src/glxeffectengine.cpp
|
|
62 |
|
44
|
63 |
DEFINES += QT_NO_DEBUG_OUTPUT QT_NO_WARNING_OUTPUT
|
|
64 |
|
|
65 |
defBlock = \
|
|
66 |
"$${LITERAL_HASH}if defined(EABI)" \
|
|
67 |
"DEFFILE ../eabi/glxviewutilities.def" \
|
|
68 |
"$${LITERAL_HASH}else" \
|
|
69 |
"DEFFILE ../bwins/glxviewutilities.def" \
|
|
70 |
"$${LITERAL_HASH}endif"
|
|
71 |
|
|
72 |
MMP_RULES += defBlock
|