[2] | 1 | CONFIG += assistant help x11inc
|
---|
| 2 | TARGET = qtdemo
|
---|
[561] | 3 | DEMO_DESTDIR = $$QT_BUILD_TREE
|
---|
| 4 | isEmpty(DEMO_DESTDIR):DEMO_DESTDIR=../..
|
---|
| 5 | DESTDIR = $$DEMO_DESTDIR/bin
|
---|
[2] | 6 | INSTALLS += target sources
|
---|
[561] | 7 |
|
---|
| 8 |
|
---|
[2] | 9 | QT += xml network
|
---|
| 10 |
|
---|
| 11 | contains(QT_CONFIG, opengl) {
|
---|
| 12 | DEFINES += QT_OPENGL_SUPPORT
|
---|
| 13 | QT += opengl
|
---|
| 14 | }
|
---|
| 15 |
|
---|
| 16 | build_all:!build_pass {
|
---|
| 17 | CONFIG -= build_all
|
---|
| 18 | CONFIG += release
|
---|
| 19 | }
|
---|
| 20 |
|
---|
| 21 | RESOURCES = qtdemo.qrc
|
---|
| 22 | HEADERS = 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
|
---|
| 42 | SOURCES = main.cpp \
|
---|
| |
---|