blob: 6c345839f81fddd9bd9eb11e5231982f624e23fc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
TARGET = blackberry
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
QT += opengl
blackberry {
# Unomment this to enable screen event handling
# through a dedicated thread.
# DEFINES += QQNX_SCREENEVENTTHREAD
} else {
DEFINES += QBB_SCREENEVENTTHREAD
}
SOURCES = main.cpp \
qbbbuffer.cpp \
qbbscreeneventthread.cpp \
qbbglcontext.cpp \
qbbglwindowsurface.cpp \
qbbinputcontext.cpp \
qbbintegration.cpp \
qbbnavigatoreventhandler.cpp \
qbbnavigatoreventnotifier.cpp \
qbbscreen.cpp \
qbbwindow.cpp \
qbbrasterwindowsurface.cpp \
qbbvirtualkeyboardpps.cpp \
qbbclipboard.cpp \
qbblocalethread.cpp \
qbbrootwindow.cpp \
qbbscreeneventhandler.cpp \
qbbabstractvirtualkeyboard.cpp \
qbbnativeinterface.cpp \
qbbbuttoneventnotifier.cpp
HEADERS = qbbbuffer.h \
qbbscreeneventthread.h \
qbbinputcontext.h \
qbbintegration.h \
qbbnavigatoreventhandler.h \
qbbnavigatoreventnotifier.h \
qbbglcontext.h \
qbbglwindowsurface.h \
qbbscreen.h \
qbbwindow.h \
qbbrasterwindowsurface.h \
qbbvirtualkeyboardpps.h \
qbbclipboard.h \
qbblocalethread.h \
qbbrootwindow.h \
qbbscreeneventhandler.h \
qbbabstractvirtualkeyboard.h \
qbbnativeinterface.h \
qbbbuttoneventnotifier.h
blackberry {
SOURCES += qbbbpseventfilter.cpp \
qbbvirtualkeyboardbps.cpp
HEADERS += qbbbpseventfilter.h \
qbbvirtualkeyboardbps.h
}
QMAKE_CXXFLAGS += -I./private
LIBS += -lpps -lscreen -lEGL -lclipboard
include (../eglconvenience/eglconvenience.pri)
include (../fontdatabases/genericunix/genericunix.pri)
target.path += $$[QT_INSTALL_PLUGINS]/platforms
INSTALLS += target
|