source: trunk/tools/qvfb/qvfb.pro@ 280

Last change on this file since 280 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 1.7 KB
Line 
1TEMPLATE = app
2CONFIG += qt warn_on uic
3TARGET = qvfb
4DESTDIR = ../../bin
5
6!win32:!embedded:!mac:CONFIG += x11
7
8target.path=$$[QT_INSTALL_BINS]
9INSTALLS += target
10
11DEPENDPATH = ../../include
12
13FORMS = config.ui
14HEADERS = qvfb.h \
15 qvfbview.h \
16 qvfbratedlg.h \
17 qanimationwriter.h \
18 gammaview.h \
19 qvfbprotocol.h \
20 qvfbshmem.h \
21 qvfbmmap.h \
22 qvfbhdr.h \
23 qlock_p.h \
24 qwssignalhandler_p.h
25
26SOURCES = qvfb.cpp \
27 qvfbview.cpp \
28 qvfbratedlg.cpp \
29 main.cpp \
30 qanimationwriter.cpp \
31 qvfbprotocol.cpp \
32 qvfbshmem.cpp \
33 qvfbmmap.cpp \
34 qlock.cpp \
35 qwssignalhandler.cpp
36
37include($$QT_SOURCE_TREE/tools/shared/deviceskin/deviceskin.pri)
38
39contains(QT_CONFIG, opengl) {
40 QT += opengl
41}
42
43contains(QT_CONFIG, system-png) {
44 LIBS += -lpng
45} else {
46 INCLUDEPATH += $$QT_SOURCE_TREE/src/3rdparty/libpng
47}
48contains(QT_CONFIG, system-zlib) {
49 LIBS += -lz
50} else {
51 INCLUDEPATH += $$QT_SOURCE_TREE/src/3rdparty/zlib
52}
53
54unix:x11 {
55 HEADERS += qvfbx11view.h \
56 x11keyfaker.h \
57 qtopiakeysym.h
58 SOURCES += qvfbx11view.cpp \
59 x11keyfaker.cpp
60 LIBS += -lXtst
61}
62
63RESOURCES += qvfb.qrc \
64 ClamshellPhone.qrc \
65 PDAPhone.qrc \
66 SmartPhone2.qrc \
67 SmartPhone.qrc \
68 SmartPhoneWithButtons.qrc \
69 TouchscreenPhone.qrc \
70 Trolltech-Keypad.qrc \
71 Trolltech-Touchscreen.qrc \
72 PortableMedia.qrc
73
Note: See TracBrowser for help on using the repository browser.