summaryrefslogtreecommitdiffstats
path: root/config.tests/static_link_order
diff options
context:
space:
mode:
Diffstat (limited to 'config.tests/static_link_order')
-rw-r--r--config.tests/static_link_order/CMakeLists.txt3
-rw-r--r--config.tests/static_link_order/main.cpp2
-rw-r--r--config.tests/static_link_order/objlib.cpp2
-rw-r--r--config.tests/static_link_order/staticlib1.cpp2
-rw-r--r--config.tests/static_link_order/staticlib2.cpp2
5 files changed, 7 insertions, 4 deletions
diff --git a/config.tests/static_link_order/CMakeLists.txt b/config.tests/static_link_order/CMakeLists.txt
index b3c122c300..c174fb95db 100644
--- a/config.tests/static_link_order/CMakeLists.txt
+++ b/config.tests/static_link_order/CMakeLists.txt
@@ -1,3 +1,6 @@
+# Copyright (C) 2022 The Qt Company Ltd.
+# SPDX-License-Identifier: BSD-3-Clause
+
# The test represents the order-related issue that we have with the ld linker.
#
# CMake versions < 3.21.0 produce the following linker line:
diff --git a/config.tests/static_link_order/main.cpp b/config.tests/static_link_order/main.cpp
index 162c48ce3f..93b8825fd9 100644
--- a/config.tests/static_link_order/main.cpp
+++ b/config.tests/static_link_order/main.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2021 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
void staticLibFunc1();
diff --git a/config.tests/static_link_order/objlib.cpp b/config.tests/static_link_order/objlib.cpp
index 0da71f4552..0ad7b76a80 100644
--- a/config.tests/static_link_order/objlib.cpp
+++ b/config.tests/static_link_order/objlib.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2021 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
void staticLibFunc2();
diff --git a/config.tests/static_link_order/staticlib1.cpp b/config.tests/static_link_order/staticlib1.cpp
index 19caeead5c..f120f9229b 100644
--- a/config.tests/static_link_order/staticlib1.cpp
+++ b/config.tests/static_link_order/staticlib1.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2021 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
void objLibFunc();
diff --git a/config.tests/static_link_order/staticlib2.cpp b/config.tests/static_link_order/staticlib2.cpp
index 61089d53bd..a9abf424fe 100644
--- a/config.tests/static_link_order/staticlib2.cpp
+++ b/config.tests/static_link_order/staticlib2.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2021 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
void staticLibFunc2() {
}