From 78cced518fb8e8152047b5bf2a29112d3f30b1a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucie=20G=C3=A9rard?= Date: Mon, 22 Aug 2022 16:40:48 +0200 Subject: [PATCH] Change the license of all CMakeLists.txt and *.cmake files to BSD MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Task-number: QTBUG-105718 Change-Id: Iab6aaba3efbb0e887673eb9523354ba78aba6520 Reviewed-by: Qt CI Bot Reviewed-by: Jörg Bornemann --- CMakeLists.txt | 2 +- cmake/FindWrapIconv.cmake | 2 +- configure.cmake | 2 +- examples/CMakeLists.txt | 2 +- examples/core5/widgets/CMakeLists.txt | 2 +- examples/core5/widgets/tools/codecs/CMakeLists.txt | 2 +- src/CMakeLists.txt | 2 +- src/core5/CMakeLists.txt | 2 +- src/core5/configure.cmake | 2 +- src/imports/graphicaleffects5/CMakeLists.txt | 2 +- src/imports/graphicaleffects5/private/CMakeLists.txt | 2 +- tests/CMakeLists.txt | 2 +- tests/auto/CMakeLists.txt | 2 +- tests/auto/core5/CMakeLists.txt | 2 +- tests/auto/core5/codecs/CMakeLists.txt | 2 +- tests/auto/core5/codecs/qtextcodec/CMakeLists.txt | 2 +- tests/auto/core5/codecs/qtextcodec/echo/CMakeLists.txt | 2 +- tests/auto/core5/codecs/utf8/CMakeLists.txt | 2 +- tests/auto/core5/io/CMakeLists.txt | 2 +- tests/auto/core5/io/qdebug/CMakeLists.txt | 2 +- tests/auto/core5/sax/CMakeLists.txt | 2 +- tests/auto/core5/sax/qxml/CMakeLists.txt | 2 +- tests/auto/core5/sax/qxmlinputsource/CMakeLists.txt | 2 +- tests/auto/core5/sax/qxmlsimplereader/CMakeLists.txt | 2 +- tests/auto/core5/sax/qxmlsimplereader/parser/CMakeLists.txt | 2 +- tests/auto/core5/serialization/CMakeLists.txt | 2 +- tests/auto/core5/serialization/json/CMakeLists.txt | 2 +- tests/auto/core5/serialization/qtextstream/CMakeLists.txt | 2 +- tests/auto/core5/text/CMakeLists.txt | 2 +- tests/auto/core5/text/qregexp/CMakeLists.txt | 2 +- tests/auto/core5/text/qstringbuilder/CMakeLists.txt | 2 +- .../core5/text/qstringbuilder/qstringbuilder1/CMakeLists.txt | 2 +- tests/auto/core5/text/qstringref/CMakeLists.txt | 2 +- tests/auto/core5/tools/CMakeLists.txt | 2 +- tests/auto/core5/tools/qlinkedlist/CMakeLists.txt | 2 +- tests/benchmarks/CMakeLists.txt | 2 +- tests/benchmarks/core5/CMakeLists.txt | 2 +- tests/benchmarks/core5/codecs/CMakeLists.txt | 2 +- tests/benchmarks/core5/codecs/qtextcodec/CMakeLists.txt | 2 +- tests/benchmarks/core5/text/CMakeLists.txt | 2 +- tests/benchmarks/core5/text/qregexp/CMakeLists.txt | 2 +- tests/benchmarks/core5/text/qstringbuilder/CMakeLists.txt | 2 +- tests/manual/graphicaleffects5/CMakeLists.txt | 2 +- util/unicode/codecs/big5/CMakeLists.txt | 2 +- 44 files changed, 44 insertions(+), 44 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4b9ced8..1aa7416 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from qt5compat.pro. diff --git a/cmake/FindWrapIconv.cmake b/cmake/FindWrapIconv.cmake index 3bb8fd1..cc804ca 100644 --- a/cmake/FindWrapIconv.cmake +++ b/cmake/FindWrapIconv.cmake @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # We can't create the same interface imported target multiple times, CMake will complain if we do # that. This can happen if the find_package call is done in multiple different subdirectories. diff --git a/configure.cmake b/configure.cmake index 5c9c276..68f54ce 100644 --- a/configure.cmake +++ b/configure.cmake @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index 5bd7138..1b763e7 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause +# SPDX-License-Identifier: BSD-3-Clause qt_examples_build_begin(EXTERNAL_BUILD) diff --git a/examples/core5/widgets/CMakeLists.txt b/examples/core5/widgets/CMakeLists.txt index 6a4b9d3..a95c7a1 100644 --- a/examples/core5/widgets/CMakeLists.txt +++ b/examples/core5/widgets/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause +# SPDX-License-Identifier: BSD-3-Clause if(NOT TARGET Qt::Widgets) return() diff --git a/examples/core5/widgets/tools/codecs/CMakeLists.txt b/examples/core5/widgets/tools/codecs/CMakeLists.txt index 48f1565..7d39f22 100644 --- a/examples/core5/widgets/tools/codecs/CMakeLists.txt +++ b/examples/core5/widgets/tools/codecs/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause +# SPDX-License-Identifier: BSD-3-Clause cmake_minimum_required(VERSION 3.16) project(codecs LANGUAGES CXX) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 0be0394..75b2627 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from src.pro. diff --git a/src/core5/CMakeLists.txt b/src/core5/CMakeLists.txt index 7b7b826..264a644 100644 --- a/src/core5/CMakeLists.txt +++ b/src/core5/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from core5.pro. diff --git a/src/core5/configure.cmake b/src/core5/configure.cmake index 6797855..1f372c5 100644 --- a/src/core5/configure.cmake +++ b/src/core5/configure.cmake @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause diff --git a/src/imports/graphicaleffects5/CMakeLists.txt b/src/imports/graphicaleffects5/CMakeLists.txt index c012347..00209ed 100644 --- a/src/imports/graphicaleffects5/CMakeLists.txt +++ b/src/imports/graphicaleffects5/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause ##################################################################### ## qtgraphicaleffectsplugin Plugin: diff --git a/src/imports/graphicaleffects5/private/CMakeLists.txt b/src/imports/graphicaleffects5/private/CMakeLists.txt index 57255e1..f901c17 100644 --- a/src/imports/graphicaleffects5/private/CMakeLists.txt +++ b/src/imports/graphicaleffects5/private/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause ##################################################################### ## qtgraphicaleffectsprivate Plugin: diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index c2b9f9f..800bc26 100644 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from tests.pro. diff --git a/tests/auto/CMakeLists.txt b/tests/auto/CMakeLists.txt index 7d3bf25..65e631b 100644 --- a/tests/auto/CMakeLists.txt +++ b/tests/auto/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from auto.pro. diff --git a/tests/auto/core5/CMakeLists.txt b/tests/auto/core5/CMakeLists.txt index 67419bd..c8334c0 100644 --- a/tests/auto/core5/CMakeLists.txt +++ b/tests/auto/core5/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from core5.pro. diff --git a/tests/auto/core5/codecs/CMakeLists.txt b/tests/auto/core5/codecs/CMakeLists.txt index 2c828b4..dc629a3 100644 --- a/tests/auto/core5/codecs/CMakeLists.txt +++ b/tests/auto/core5/codecs/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from codecs.pro. diff --git a/tests/auto/core5/codecs/qtextcodec/CMakeLists.txt b/tests/auto/core5/codecs/qtextcodec/CMakeLists.txt index d2dec3d..d742588 100644 --- a/tests/auto/core5/codecs/qtextcodec/CMakeLists.txt +++ b/tests/auto/core5/codecs/qtextcodec/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from qtextcodec.pro. diff --git a/tests/auto/core5/codecs/qtextcodec/echo/CMakeLists.txt b/tests/auto/core5/codecs/qtextcodec/echo/CMakeLists.txt index 36a39ab..ee4f699 100644 --- a/tests/auto/core5/codecs/qtextcodec/echo/CMakeLists.txt +++ b/tests/auto/core5/codecs/qtextcodec/echo/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from echo.pro. diff --git a/tests/auto/core5/codecs/utf8/CMakeLists.txt b/tests/auto/core5/codecs/utf8/CMakeLists.txt index a5d46c8..ea00d1d 100644 --- a/tests/auto/core5/codecs/utf8/CMakeLists.txt +++ b/tests/auto/core5/codecs/utf8/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from utf8.pro. diff --git a/tests/auto/core5/io/CMakeLists.txt b/tests/auto/core5/io/CMakeLists.txt index 9905df8..9a9ef5c 100644 --- a/tests/auto/core5/io/CMakeLists.txt +++ b/tests/auto/core5/io/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from io.pro. diff --git a/tests/auto/core5/io/qdebug/CMakeLists.txt b/tests/auto/core5/io/qdebug/CMakeLists.txt index a296948..9fa3e6d 100644 --- a/tests/auto/core5/io/qdebug/CMakeLists.txt +++ b/tests/auto/core5/io/qdebug/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from qdebug.pro. diff --git a/tests/auto/core5/sax/CMakeLists.txt b/tests/auto/core5/sax/CMakeLists.txt index 167a122..db7498a 100644 --- a/tests/auto/core5/sax/CMakeLists.txt +++ b/tests/auto/core5/sax/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from sax.pro. diff --git a/tests/auto/core5/sax/qxml/CMakeLists.txt b/tests/auto/core5/sax/qxml/CMakeLists.txt index d918f41..a9b8285 100644 --- a/tests/auto/core5/sax/qxml/CMakeLists.txt +++ b/tests/auto/core5/sax/qxml/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from qxml.pro. diff --git a/tests/auto/core5/sax/qxmlinputsource/CMakeLists.txt b/tests/auto/core5/sax/qxmlinputsource/CMakeLists.txt index 93a2294..6d7d5f8 100644 --- a/tests/auto/core5/sax/qxmlinputsource/CMakeLists.txt +++ b/tests/auto/core5/sax/qxmlinputsource/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from qxmlinputsource.pro. diff --git a/tests/auto/core5/sax/qxmlsimplereader/CMakeLists.txt b/tests/auto/core5/sax/qxmlsimplereader/CMakeLists.txt index 3b7c7e3..eb3255b 100644 --- a/tests/auto/core5/sax/qxmlsimplereader/CMakeLists.txt +++ b/tests/auto/core5/sax/qxmlsimplereader/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from qxmlsimplereader.pro. diff --git a/tests/auto/core5/sax/qxmlsimplereader/parser/CMakeLists.txt b/tests/auto/core5/sax/qxmlsimplereader/parser/CMakeLists.txt index 68c76bf..1a921db 100644 --- a/tests/auto/core5/sax/qxmlsimplereader/parser/CMakeLists.txt +++ b/tests/auto/core5/sax/qxmlsimplereader/parser/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # special case skip regeneration diff --git a/tests/auto/core5/serialization/CMakeLists.txt b/tests/auto/core5/serialization/CMakeLists.txt index 0fc4b77..7296576 100644 --- a/tests/auto/core5/serialization/CMakeLists.txt +++ b/tests/auto/core5/serialization/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from serialization.pro. diff --git a/tests/auto/core5/serialization/json/CMakeLists.txt b/tests/auto/core5/serialization/json/CMakeLists.txt index b685d3a..a65f09f 100644 --- a/tests/auto/core5/serialization/json/CMakeLists.txt +++ b/tests/auto/core5/serialization/json/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from json.pro. diff --git a/tests/auto/core5/serialization/qtextstream/CMakeLists.txt b/tests/auto/core5/serialization/qtextstream/CMakeLists.txt index d96c1ec..de356de 100644 --- a/tests/auto/core5/serialization/qtextstream/CMakeLists.txt +++ b/tests/auto/core5/serialization/qtextstream/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from qtextstream.pro. diff --git a/tests/auto/core5/text/CMakeLists.txt b/tests/auto/core5/text/CMakeLists.txt index 28726c9..dc4f490 100644 --- a/tests/auto/core5/text/CMakeLists.txt +++ b/tests/auto/core5/text/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from text.pro. diff --git a/tests/auto/core5/text/qregexp/CMakeLists.txt b/tests/auto/core5/text/qregexp/CMakeLists.txt index bde6e75..0c4f150 100644 --- a/tests/auto/core5/text/qregexp/CMakeLists.txt +++ b/tests/auto/core5/text/qregexp/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from qregexp.pro. diff --git a/tests/auto/core5/text/qstringbuilder/CMakeLists.txt b/tests/auto/core5/text/qstringbuilder/CMakeLists.txt index 25ceaaf..fb60d27 100644 --- a/tests/auto/core5/text/qstringbuilder/CMakeLists.txt +++ b/tests/auto/core5/text/qstringbuilder/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from qstringbuilder.pro. diff --git a/tests/auto/core5/text/qstringbuilder/qstringbuilder1/CMakeLists.txt b/tests/auto/core5/text/qstringbuilder/qstringbuilder1/CMakeLists.txt index 3278c50..0fd9c4a 100644 --- a/tests/auto/core5/text/qstringbuilder/qstringbuilder1/CMakeLists.txt +++ b/tests/auto/core5/text/qstringbuilder/qstringbuilder1/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from qstringbuilder1.pro. diff --git a/tests/auto/core5/text/qstringref/CMakeLists.txt b/tests/auto/core5/text/qstringref/CMakeLists.txt index 95a3376..5a5fc72 100644 --- a/tests/auto/core5/text/qstringref/CMakeLists.txt +++ b/tests/auto/core5/text/qstringref/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from qstringref.pro. diff --git a/tests/auto/core5/tools/CMakeLists.txt b/tests/auto/core5/tools/CMakeLists.txt index 8ef9484..d9b0666 100644 --- a/tests/auto/core5/tools/CMakeLists.txt +++ b/tests/auto/core5/tools/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from tools.pro. diff --git a/tests/auto/core5/tools/qlinkedlist/CMakeLists.txt b/tests/auto/core5/tools/qlinkedlist/CMakeLists.txt index 6a63424..5569061 100644 --- a/tests/auto/core5/tools/qlinkedlist/CMakeLists.txt +++ b/tests/auto/core5/tools/qlinkedlist/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from qlinkedlist.pro. diff --git a/tests/benchmarks/CMakeLists.txt b/tests/benchmarks/CMakeLists.txt index 409ee04..426a2ce 100644 --- a/tests/benchmarks/CMakeLists.txt +++ b/tests/benchmarks/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from benchmarks.pro. diff --git a/tests/benchmarks/core5/CMakeLists.txt b/tests/benchmarks/core5/CMakeLists.txt index e9d4754..ffb2b69 100644 --- a/tests/benchmarks/core5/CMakeLists.txt +++ b/tests/benchmarks/core5/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from core5.pro. diff --git a/tests/benchmarks/core5/codecs/CMakeLists.txt b/tests/benchmarks/core5/codecs/CMakeLists.txt index 466d599..7267719 100644 --- a/tests/benchmarks/core5/codecs/CMakeLists.txt +++ b/tests/benchmarks/core5/codecs/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from codecs.pro. diff --git a/tests/benchmarks/core5/codecs/qtextcodec/CMakeLists.txt b/tests/benchmarks/core5/codecs/qtextcodec/CMakeLists.txt index 27732c6..e5f1b7a 100644 --- a/tests/benchmarks/core5/codecs/qtextcodec/CMakeLists.txt +++ b/tests/benchmarks/core5/codecs/qtextcodec/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from qtextcodec.pro. diff --git a/tests/benchmarks/core5/text/CMakeLists.txt b/tests/benchmarks/core5/text/CMakeLists.txt index d2da2a9..61cad51 100644 --- a/tests/benchmarks/core5/text/CMakeLists.txt +++ b/tests/benchmarks/core5/text/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from text.pro. diff --git a/tests/benchmarks/core5/text/qregexp/CMakeLists.txt b/tests/benchmarks/core5/text/qregexp/CMakeLists.txt index f547f48..9d0d1b6 100644 --- a/tests/benchmarks/core5/text/qregexp/CMakeLists.txt +++ b/tests/benchmarks/core5/text/qregexp/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from qregexp.pro. diff --git a/tests/benchmarks/core5/text/qstringbuilder/CMakeLists.txt b/tests/benchmarks/core5/text/qstringbuilder/CMakeLists.txt index a4466c9..2a41a3b 100644 --- a/tests/benchmarks/core5/text/qstringbuilder/CMakeLists.txt +++ b/tests/benchmarks/core5/text/qstringbuilder/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from qstringbuilder.pro. diff --git a/tests/manual/graphicaleffects5/CMakeLists.txt b/tests/manual/graphicaleffects5/CMakeLists.txt index 6a365de..0d48ee2 100644 --- a/tests/manual/graphicaleffects5/CMakeLists.txt +++ b/tests/manual/graphicaleffects5/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from graphicaleffects.pro. diff --git a/util/unicode/codecs/big5/CMakeLists.txt b/util/unicode/codecs/big5/CMakeLists.txt index 3262749..704bee5 100644 --- a/util/unicode/codecs/big5/CMakeLists.txt +++ b/util/unicode/codecs/big5/CMakeLists.txt @@ -1,5 +1,5 @@ # Copyright (C) 2022 The Qt Company Ltd. -# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 +# SPDX-License-Identifier: BSD-3-Clause # Generated from big5.pro.