summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_add_resources_big_resources/leaf_lib.cpp
blob: 8363ceec0a81d8c1892130ff3f3d567b7ef0745e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only

#include <QtCore/qfile.h>

namespace leaf_lib {

bool isResourceAvailable()
{
    return QFile::exists(u":/resource2.txt"_qs);
}

} // namespace