blob: 247337a26452e60fb2b04e69d00245a1b81dbfe7 (
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
|
TEMPLATE = app
CONFIG += qt warn_on uic
TARGET = qvfb
DESTDIR = ../../bin
!win32:!embedded:!mac:CONFIG += x11
target.path=$$[QT_INSTALL_BINS]
INSTALLS += target
DEPENDPATH = ../../include
FORMS = config.ui
HEADERS = qvfb.h \
qvfbview.h \
qvfbratedlg.h \
qanimationwriter.h \
gammaview.h \
qvfbprotocol.h \
qvfbshmem.h \
qvfbmmap.h \
qvfbhdr.h \
qlock_p.h \
qwssignalhandler_p.h
SOURCES = qvfb.cpp \
qvfbview.cpp \
qvfbratedlg.cpp \
main.cpp \
qanimationwriter.cpp \
qvfbprotocol.cpp \
qvfbshmem.cpp \
qvfbmmap.cpp \
qlock.cpp \
qwssignalhandler.cpp
include($$QT_SOURCE_TREE/tools/shared/deviceskin/deviceskin.pri)
contains(QT_CONFIG, opengl) {
QT += opengl
}
contains(QT_CONFIG, system-png) {
LIBS += -lpng
} else {
INCLUDEPATH += $$QT_SOURCE_TREE/src/3rdparty/libpng
}
contains(QT_CONFIG, system-zlib) {
LIBS += -lz
} else {
INCLUDEPATH += $$QT_SOURCE_TREE/src/3rdparty/zlib
}
unix:x11 {
HEADERS += qvfbx11view.h \
x11keyfaker.h \
qtopiakeysym.h
SOURCES += qvfbx11view.cpp \
x11keyfaker.cpp
LIBS += -lXtst
}
RESOURCES += qvfb.qrc
|