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

#include <QtNetwork>

int main(int argc, char ** argv)
{
   QCoreApplication app(argc, argv);
   return QSslSocket::supportsSsl() ? 0 : 1;
}