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

Last change on this file since 695 was 695, checked in by Dmitry A. Kuminov, 15 years ago

qtdemo: Added OS/2 icon.

File size: 1.5 KB
Line 
1CONFIG += assistant 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
16build_all:!build_pass {
17 CONFIG -= build_all
18 CONFIG += release
19}
20
21RESOURCES = qtdemo.qrc
22HEADERS = mainwindow.h \
23 demoscene.h \
24 demoitem.h \
25 score.h \
26 demoitemanimation.h \
27 itemcircleanimation.h \
28 demotextitem.h \
29 headingitem.h \
30 dockitem.h \
31 scanitem.h \
32 letteritem.h \
33 examplecontent.h \
34 menucontent.h \
35 guide.h \
36 guideline.h \
37 guidecircle.h \
38 menumanager.h \
39 colors.h \
40 textbutton.h \
41 imageitem.h
42SOURCES = main.cpp \
43 demoscene.cpp \
44 mainwindow.cpp \
45 demoitem.cpp \
46 score.cpp \
47 demoitemanimation.cpp \
48 itemcircleanimation.cpp \
49 demotextitem.cpp \
50 headingitem.cpp \
51 dockitem.cpp \
52 scanitem.cpp \
53 letteritem.cpp \
54 examplecontent.cpp \
55 menucontent.cpp \
56 guide.cpp \
57 guideline.cpp \
58 guidecircle.cpp \
59 menumanager.cpp \
60 colors.cpp \
61 textbutton.cpp \
62 imageitem.cpp
63
64win32:RC_FILE = qtdemo.rc
65os2:RC_FILE = qtdemo_os2.rc
66mac {
67ICON = qtdemo.icns
68QMAKE_INFO_PLIST = Info_mac.plist
69}
70
71symbian: include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri)
72
73# install
74target.path = $$[QT_INSTALL_BINS]
75sources.files = $$SOURCES $$HEADERS $$FORMS $$RESOURCES qtdemo.pro images xml *.ico *.icns *.rc *.plist
76sources.path = $$[QT_INSTALL_DEMOS]/qtdemo
77
Note: See TracBrowser for help on using the repository browser.