summaryrefslogtreecommitdiffstats
path: root/tests/auto/tools/macdeployqt/source_plugin_sqlite/main.cpp
blob: d87933fa7c99fa04c193f248f10334edc6ad5358 (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 WITH Qt-GPL-exception-1.0

#include <QtSql>

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