summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/macdeployqt/source_plugin_sqlite/main.cpp
blob: 12343141f8776d2b90f71bfafe6750434dac9fda (plain)
1
2
3
4
5
6
7
8
9
10
11
// Copyright (C) 2021 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include <QtSql>

int main(int argc, char ** argv)
{
   QCoreApplication app(argc, argv);
   QSqlDatabase db = QSqlDatabase::addDatabase("QSQLITE");
   return db.isValid() ? 0 : 1;
}