blob: 7f6da24a29c94180c1c0ff5cc32c532147c697cd (
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
|
TARGET = blackberry
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
QT += opengl
SOURCES = main.cpp \
qbbbuffer.cpp \
qbbeventthread.cpp \
qbbglcontext.cpp \
qbbglwindowsurface.cpp \
qbbinputcontext.cpp \
qbbintegration.cpp \
qbbnavigatoreventhandler.cpp \
qbbscreen.cpp \
qbbwindow.cpp \
qbbrasterwindowsurface.cpp \
qbbvirtualkeyboard.cpp \
qbbclipboard.cpp \
qbblocalethread.cpp \
qbbrootwindow.cpp \
qbbscreeneventhandler.cpp \
qbbabstractvirtualkeyboard.cpp
HEADERS = qbbbuffer.h \
qbbeventthread.h \
qbbinputcontext.h \
qbbintegration.h \
qbbnavigatoreventhandler.h \
qbbglcontext.h \
qbbglwindowsurface.h \
qbbscreen.h \
qbbwindow.h \
qbbrasterwindowsurface.h \
qbbvirtualkeyboard.h \
qbbclipboard.h \
qbblocalethread.h \
qbbrootwindow.h \
qbbscreeneventhandler.h \
qbbabstractvirtualkeyboard.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
|