source: trunk/demos/qtdemo/qtdemo.pro@ 858

Last change on this file since 858 was 846, checked in by Dmitry A. Kuminov, 14 years ago

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

File size: 1.6 KB
Line 
1CONFIG += help x11inc
2TARGET = qtdemo
3DEMO_DESTDIR = $$QT_BUILD_TREE
4isEmpty(DEMO_DESTDIR):DEMO_DESTDIR=../..
5DESTDIR = $$DEMO_DESTDIR/bin
6INSTALLS += target sources
7
8
9QT += xml network
10
11contains(QT_CONFIG, opengl) {
12 DEFINES += QT_OPENGL_SUPPORT
13 QT += opengl
14}
15
16contains(QT_CONFIG, declarative) {
17 QT += declarative
18}
19
20build_all:!build_pass {
21 CONFIG -= build_all
22 CONFIG += release
23}
24
25RESOURCES = qtdemo.qrc
26HEADERS = mainwindow.h \
27 demoscene.h \
28 demoitem.h \
29 score.h \
30 demoitemanimation.h \
31 itemcircleanimation.h \
32 demotextitem.h \
33 headingitem.h \
34 dockitem.h \
35 scanitem.h \
36 letteritem.h \
37 examplecontent.h \
38 menucontent.h \
39 guide.h \
40 guideline.h \
41 guidecircle.h \
42 menumanager.h \
43 colors.h \
44 textbutton.h \
45 imageitem.h
46SOURCES = main.cpp \
47 demoscene.cpp \
48 mainwindow.cpp \
49 demoitem.cpp \
50 score.cpp \
51 demoitemanimation.cpp \
52 itemcircleanimation.cpp \
53 demotextitem.cpp \
54 headingitem.cpp \
55 dockitem.cpp \
56 scanitem.cpp \
57 letteritem.cpp \
58 examplecontent.cpp \
59 menucontent.cpp \
60 guide.cpp \
61 guideline.cpp \
62 guidecircle.cpp \
63 menumanager.cpp \
64 colors.cpp \
65 textbutton.cpp \
66 imageitem.cpp
67
68win32:RC_FILE = qtdemo.rc
69os2:RC_FILE = qtdemo_os2.rc
70mac {
71ICON = qtdemo.icns
72QMAKE_INFO_PLIST = Info_mac.plist
73}
74
75symbian: include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri)
76
77# install
78target.path = $$[QT_INSTALL_BINS]
79sources.files = $$SOURCES $$HEADERS $$FORMS $$RESOURCES qtdemo.pro images xml *.ico *.icns *.rc *.plist
80sources.path = $$[QT_INSTALL_DEMOS]/qtdemo
81
82OTHER_FILES += \
83 qmlShell.qml
Note: See TracBrowser for help on using the repository browser.