f13b0b2cf2
Compiling the default examples should be possible without compile errors. Task-number: QTBUG-53141 Change-Id: I73d8787241291ae6230861a89b38e91d900fede0 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io> Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
19 lines
484 B
Prolog
19 lines
484 B
Prolog
TEMPLATE = app
|
|
TARGET = sqlbrowser
|
|
|
|
QT += sql widgets
|
|
requires(qtConfig(tableview))
|
|
|
|
HEADERS = browser.h connectionwidget.h qsqlconnectiondialog.h
|
|
SOURCES = main.cpp browser.cpp connectionwidget.cpp qsqlconnectiondialog.cpp
|
|
|
|
FORMS = browserwidget.ui qsqlconnectiondialog.ui
|
|
build_all:!build_pass {
|
|
CONFIG -= build_all
|
|
CONFIG += release
|
|
}
|
|
|
|
# install
|
|
target.path = $$[QT_INSTALL_EXAMPLES]/sql/sqlbrowser
|
|
INSTALLS += target
|