summaryrefslogtreecommitdiffstats
path: root/tests/auto/cmake/test_interface_link_libraries/main.cpp
blob: 75e6f22db0619268c1d82c8bedf3b4e6be5be30f (plain)
1
2
3
4
5
6
7
8
9
10
// Copyright (C) 2013 Klarälvdalens Datakonsult AB, a KDAB Group company, info@kdab.com, author Stephen Kelly <stephen.kelly@kdab.com>
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#include "somelib.h"

int main(int,char**)
{
    SomeObject so;
    return so.value();
}