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

Last change on this file since 452 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.4 KB
Line 
1CONFIG += assistant help x11inc
2TARGET = qtdemo
3DESTDIR = $$QT_BUILD_TREE/bin
4OBJECTS_DIR = .obj
5MOC_DIR = .moc
6INSTALLS += target sources
7QT += xml network
8
9contains(QT_CONFIG, opengl) {
10 DEFINES += QT_OPENGL_SUPPORT
11 QT += opengl
12}
13
14build_all:!build_pass {
15 CONFIG -= build_all
16 CONFIG += release
17}
18
19RESOURCES = qtdemo.qrc
20HEADERS = mainwindow.h \
21 demoscene.h \
22 demoitem.h \
23 score.h \
24 demoitemanimation.h \
25 itemcircleanimation.h \
26 demotextitem.h \
27 headingitem.h \
28 dockitem.h \
29 scanitem.h \
30 letteritem.h \
31 examplecontent.h \
32 menucontent.h \
33 guide.h \
34 guideline.h \
35 guidecircle.h \
36 menumanager.h \
37 colors.h \
38 textbutton.h \
39 imageitem.h
40SOURCES = main.cpp \
41 demoscene.cpp \
42 mainwindow.cpp \
43 demoitem.cpp \
44 score.cpp \
45 demoitemanimation.cpp \
46 itemcircleanimation.cpp \
47 demotextitem.cpp \
48 headingitem.cpp \
49 dockitem.cpp \
50 scanitem.cpp \
51 letteritem.cpp \
52 examplecontent.cpp \
53 menucontent.cpp \
54 guide.cpp \
55 guideline.cpp \
56 guidecircle.cpp \
57 menumanager.cpp \
58 colors.cpp \
59 textbutton.cpp \
60 imageitem.cpp
61
62win32:RC_FILE = qtdemo.rc
63mac {
64ICON = qtdemo.icns
65QMAKE_INFO_PLIST = Info_mac.plist
66}
67
68# install
69target.path = $$[QT_INSTALL_BINS]
70sources.files = $$SOURCES $$HEADERS $$FORMS $$RESOURCES qtdemo.pro images xml *.ico *.icns *.rc *.plist
71sources.path = $$[QT_INSTALL_DEMOS]/qtdemo
72
Note: See TracBrowser for help on using the repository browser.