summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_add_resources_binary_generated/main.cpp
blob: 65d5ff306b2780c97161ae03a1fe6d7fba66c6e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2020 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include <QFile>
#include <QResource>

int main(int, char **)
{
    if (!QResource::registerResource(RESOURCE1_FULL_PATH)
            || !QFile::exists(":/resource1.txt")
            || !QResource::registerResource(RESOURCE2_FULL_PATH)
            || !QFile::exists(":/resource2.txt")) {
        return -1;
    }
    return 0;
}