blob: cee7b6d730e349abb86931de6b08d504e36f4376 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
QT += xmlpatterns
FORMS += forms/querywidget.ui
HEADERS = querymainwindow.h ../shared/xmlsyntaxhighlighter.h
RESOURCES = recipes.qrc
SOURCES = main.cpp querymainwindow.cpp ../shared/xmlsyntaxhighlighter.cpp
INCLUDEPATH += ../shared/
target.path = $$[QT_INSTALL_EXAMPLES]/xmlpatterns/recipes
sources.files = $$SOURCES $$HEADERS $$RESOURCES *.pro *.xq *.html forms files
sources.path = $$[QT_INSTALL_EXAMPLES]/xmlpatterns/recipes
INSTALLS += target sources
include($$QT_SOURCE_TREE/examples/examplebase.pri)
|