blob: a3b55aba60cae5cb740919fc2852cb5353e456d1 (
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
73
|
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 \
ClamshellPhone.qrc \
PDAPhone.qrc \
SmartPhone2.qrc \
SmartPhone.qrc \
SmartPhoneWithButtons.qrc \
TouchscreenPhone.qrc \
Trolltech-Keypad.qrc \
Trolltech-Touchscreen.qrc \
PortableMedia.qrc
|