diff options
author | Lucie Gérard <lucie.gerard@qt.io> | 2022-08-19 15:21:34 +0200 |
---|---|---|
committer | Lucie Gérard <lucie.gerard@qt.io> | 2022-08-23 23:58:42 +0200 |
commit | 32df595275f5d50ab4458620808f80121bb9c6a0 (patch) | |
tree | ae25a410c6bd95fd4436ad3f5059e601f59eb7de /config.tests | |
parent | 501dfe1bc7266df0d9c04eaa244ad1c00f38c45b (diff) | |
download | qtbase-32df595275f5d50ab4458620808f80121bb9c6a0.tar.gz |
Change the license of all CMakeLists.txt and *.cmake files to BSD
Task-number: QTBUG-105718
Change-Id: I5d3ef70a31235868b9be6cb479b7621bf2a8ba39
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: Jörg Bornemann <joerg.bornemann@qt.io>
Diffstat (limited to 'config.tests')
-rw-r--r-- | config.tests/arch/CMakeLists.txt | 2 | ||||
-rw-r--r-- | config.tests/binary_for_strip/CMakeLists.txt | 2 | ||||
-rw-r--r-- | config.tests/cmake_zstd/check_zstd.cmake | 2 | ||||
-rw-r--r-- | config.tests/precompile_header/CMakeLists.txt | 2 | ||||
-rw-r--r-- | config.tests/separate_debug_info/CMakeLists.txt | 2 | ||||
-rw-r--r-- | config.tests/static_link_order/CMakeLists.txt | 2 | ||||
-rw-r--r-- | config.tests/x86_simd/CMakeLists.txt | 2 | ||||
-rw-r--r-- | config.tests/x86intrin/CMakeLists.txt | 2 |
8 files changed, 8 insertions, 8 deletions
diff --git a/config.tests/arch/CMakeLists.txt b/config.tests/arch/CMakeLists.txt index 4412dff941..b2517039df 100644 --- a/config.tests/arch/CMakeLists.txt +++ b/config.tests/arch/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 cmake_minimum_required(VERSION 3.16) project(arch LANGUAGES CXX) diff --git a/config.tests/binary_for_strip/CMakeLists.txt b/config.tests/binary_for_strip/CMakeLists.txt index 703f2d05b5..2395dfad47 100644 --- a/config.tests/binary_for_strip/CMakeLists.txt +++ b/config.tests/binary_for_strip/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 cmake_minimum_required(VERSION 3.16) project(proj LANGUAGES CXX) diff --git a/config.tests/cmake_zstd/check_zstd.cmake b/config.tests/cmake_zstd/check_zstd.cmake index 282aecbd17..6ab5f15f29 100644 --- a/config.tests/cmake_zstd/check_zstd.cmake +++ b/config.tests/cmake_zstd/check_zstd.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 file(ARCHIVE_CREATE OUTPUT cmake_zstd.zstd diff --git a/config.tests/precompile_header/CMakeLists.txt b/config.tests/precompile_header/CMakeLists.txt index 31d93b3908..d64887594a 100644 --- a/config.tests/precompile_header/CMakeLists.txt +++ b/config.tests/precompile_header/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 cmake_minimum_required(VERSION 3.16) project(precompile_header LANGUAGES CXX) diff --git a/config.tests/separate_debug_info/CMakeLists.txt b/config.tests/separate_debug_info/CMakeLists.txt index 1077734dad..b325bf0cca 100644 --- a/config.tests/separate_debug_info/CMakeLists.txt +++ b/config.tests/separate_debug_info/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 cmake_minimum_required(VERSION 3.16) diff --git a/config.tests/static_link_order/CMakeLists.txt b/config.tests/static_link_order/CMakeLists.txt index 47578c19aa..c174fb95db 100644 --- a/config.tests/static_link_order/CMakeLists.txt +++ b/config.tests/static_link_order/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 # The test represents the order-related issue that we have with the ld linker. # diff --git a/config.tests/x86_simd/CMakeLists.txt b/config.tests/x86_simd/CMakeLists.txt index cd20032efa..48878d196a 100644 --- a/config.tests/x86_simd/CMakeLists.txt +++ b/config.tests/x86_simd/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 cmake_minimum_required(VERSION 3.16) project(x86_simd LANGUAGES CXX) diff --git a/config.tests/x86intrin/CMakeLists.txt b/config.tests/x86intrin/CMakeLists.txt index a4ad213a7d..1d5beac5ec 100644 --- a/config.tests/x86intrin/CMakeLists.txt +++ b/config.tests/x86intrin/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 cmake_minimum_required(VERSION 3.16) project(x86intrin LANGUAGES CXX) |