Files correlati : cg0.exe cg0700a.msk cg0700b.msk cg3.exe cg4.exe Bug : Commento: Merge 1.0 libraries
83 lines
1.6 KiB
Prolog
83 lines
1.6 KiB
Prolog
CONFIG += help x11inc
|
|
TARGET = qtdemo
|
|
DEMO_DESTDIR = $$QT_BUILD_TREE
|
|
isEmpty(DEMO_DESTDIR):DEMO_DESTDIR=../..
|
|
DESTDIR = $$DEMO_DESTDIR/bin
|
|
INSTALLS += target sources
|
|
|
|
|
|
QT += xml network
|
|
|
|
contains(QT_CONFIG, opengl) {
|
|
DEFINES += QT_OPENGL_SUPPORT
|
|
QT += opengl
|
|
}
|
|
|
|
contains(QT_CONFIG, declarative) {
|
|
QT += declarative
|
|
}
|
|
|
|
build_all:!build_pass {
|
|
CONFIG -= build_all
|
|
CONFIG += release
|
|
}
|
|
|
|
RESOURCES = qtdemo.qrc
|
|
HEADERS = mainwindow.h \
|
|
demoscene.h \
|
|
demoitem.h \
|
|
score.h \
|
|
demoitemanimation.h \
|
|
itemcircleanimation.h \
|
|
demotextitem.h \
|
|
headingitem.h \
|
|
dockitem.h \
|
|
scanitem.h \
|
|
letteritem.h \
|
|
examplecontent.h \
|
|
menucontent.h \
|
|
guide.h \
|
|
guideline.h \
|
|
guidecircle.h \
|
|
menumanager.h \
|
|
colors.h \
|
|
textbutton.h \
|
|
imageitem.h
|
|
SOURCES = main.cpp \
|
|
demoscene.cpp \
|
|
mainwindow.cpp \
|
|
demoitem.cpp \
|
|
score.cpp \
|
|
demoitemanimation.cpp \
|
|
itemcircleanimation.cpp \
|
|
demotextitem.cpp \
|
|
headingitem.cpp \
|
|
dockitem.cpp \
|
|
scanitem.cpp \
|
|
letteritem.cpp \
|
|
examplecontent.cpp \
|
|
menucontent.cpp \
|
|
guide.cpp \
|
|
guideline.cpp \
|
|
guidecircle.cpp \
|
|
menumanager.cpp \
|
|
colors.cpp \
|
|
textbutton.cpp \
|
|
imageitem.cpp
|
|
|
|
win32:RC_FILE = qtdemo.rc
|
|
mac {
|
|
ICON = qtdemo.icns
|
|
QMAKE_INFO_PLIST = Info_mac.plist
|
|
}
|
|
|
|
symbian: include($$QT_SOURCE_TREE/demos/symbianpkgrules.pri)
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_BINS]
|
|
sources.files = $$SOURCES $$HEADERS $$FORMS $$RESOURCES qtdemo.pro images xml *.ico *.icns *.rc *.plist
|
|
sources.path = $$[QT_INSTALL_DEMOS]/qtdemo
|
|
|
|
OTHER_FILES += \
|
|
qmlShell.qml
|