2011-04-27 10:05:43 +00:00
|
|
|
TEMPLATE = app
|
|
|
|
TARGET = textedit
|
|
|
|
|
|
|
|
CONFIG += qt warn_on
|
|
|
|
|
|
|
|
HEADERS = textedit.h
|
|
|
|
SOURCES = textedit.cpp \
|
|
|
|
main.cpp
|
|
|
|
|
|
|
|
RESOURCES += textedit.qrc
|
|
|
|
build_all:!build_pass {
|
|
|
|
CONFIG -= build_all
|
|
|
|
CONFIG += release
|
|
|
|
}
|
|
|
|
|
|
|
|
# install
|
2011-06-27 08:31:24 +00:00
|
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/qtbase/richtext/textedit
|
2011-04-27 10:05:43 +00:00
|
|
|
sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro *.html *.doc images
|
2011-06-27 08:31:24 +00:00
|
|
|
sources.path = $$[QT_INSTALL_EXAMPLES]/qtbase/richtext/textedit
|
2011-04-27 10:05:43 +00:00
|
|
|
INSTALLS += target sources
|
|
|
|
|
2011-08-16 14:38:56 +00:00
|
|
|
QT += widgets printsupport
|