fe2f8146d4
the code was broken since 5.0, as it still hardcoded the version number 4 for the plugin basenames. wince is not supported any more, so there is no point in trying to restore the code to function. at a later point, we'll make QTPLUGIN universal enough to cover both static and dynamic deployment. Change-Id: I0911ce4aff7a799dd471d6218e046f13dca6d49e Reviewed-by: Jake Petroules <jake.petroules@qt.io> Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io> Reviewed-by: Andy Shaw <andy.shaw@qt.io>
18 lines
454 B
Prolog
18 lines
454 B
Prolog
TEMPLATE = app
|
|
TARGET = sqlbrowser
|
|
|
|
QT += sql widgets
|
|
|
|
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
|