blob: 05bd384a1d6cf05b0e0b4c6593ee931fdf95ade4 (
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
|
TARGET = qtestlite
include(../../qpluginbase.pri)
QTDIR_build:DESTDIR = $$QT_BUILD_TREE/plugins/platforms
SOURCES = \
main.cpp \
qtestliteintegration.cpp \
qtestlitewindowsurface.cpp \
qtestlitewindow.cpp
HEADERS = \
qtestliteintegration.h \
qtestlitewindowsurface.h \
qtestlitewindow.h
LIBS += -lX11 -lXext
include (../fontdatabases/genericunix/genericunix.pri)
contains(QT_CONFIG, opengl) {
QT += opengl
HEADERS += qglxintegration.h
SOURCES += qglxintegration.cpp
}
target.path += $$[QT_INSTALL_PLUGINS]/platforms
INSTALLS += target
|