aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucie Gérard <lucie.gerard@qt.io>2024-03-28 15:22:26 +0100
committerLucie Gérard <lucie.gerard@qt.io>2024-04-04 08:21:54 +0100
commitbe97b0f55c53818ecec2042d826d5ba83a04d2ad (patch)
tree89e4ec95cbee70a374ea86ccbd725435adc98923
parentc97bb20500067fd9b4167c0e01cf4e6ea537fce9 (diff)
Correct license for examples files
Example takes precedence over build system file type. According to QUIP-18 [1], all examples file should be LicenseRef-Qt-Commercial OR BSD-3-Clause [1]: https://contribute.qt-project.org/quips/18 Pick-to: 6.7 Task-number: QTBUG-121787 Change-Id: I88aae81aaa676eb526257dfe6ac35e11083848c8 Reviewed-by: Kai Köhne <kai.koehne@qt.io>
-rw-r--r--examples/CMakeLists.txt2
-rw-r--r--examples/webchannel/CMakeLists.txt2
-rw-r--r--examples/webchannel/chatclient-qml/CMakeLists.txt2
-rw-r--r--examples/webchannel/chatclient-qml/main.cpp2
-rw-r--r--examples/webchannel/chatserver-cpp/CMakeLists.txt2
-rw-r--r--examples/webchannel/standalone/CMakeLists.txt2
6 files changed, 6 insertions, 6 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
index 28984ed..9c6c9b4 100644
--- a/examples/CMakeLists.txt
+++ b/examples/CMakeLists.txt
@@ -1,5 +1,5 @@
# Copyright (C) 2022 The Qt Company Ltd.
-# SPDX-License-Identifier: BSD-3-Clause
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
qt_examples_build_begin(EXTERNAL_BUILD)
diff --git a/examples/webchannel/CMakeLists.txt b/examples/webchannel/CMakeLists.txt
index 52825f6..ef0ca64 100644
--- a/examples/webchannel/CMakeLists.txt
+++ b/examples/webchannel/CMakeLists.txt
@@ -1,5 +1,5 @@
# Copyright (C) 2022 The Qt Company Ltd.
-# SPDX-License-Identifier: BSD-3-Clause
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
# These are all TEMPLATE = aux
#qt_internal_add_example(nodejs)
diff --git a/examples/webchannel/chatclient-qml/CMakeLists.txt b/examples/webchannel/chatclient-qml/CMakeLists.txt
index bf4ba8a..332800e 100644
--- a/examples/webchannel/chatclient-qml/CMakeLists.txt
+++ b/examples/webchannel/chatclient-qml/CMakeLists.txt
@@ -1,5 +1,5 @@
# Copyright (C) 2023 The Qt Company Ltd.
-# SPDX-License-Identifier: BSD-3-Clause
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
cmake_minimum_required(VERSION 3.16)
project(qmlchatclient LANGUAGES CXX)
diff --git a/examples/webchannel/chatclient-qml/main.cpp b/examples/webchannel/chatclient-qml/main.cpp
index 522b9d7..01a9d24 100644
--- a/examples/webchannel/chatclient-qml/main.cpp
+++ b/examples/webchannel/chatclient-qml/main.cpp
@@ -1,5 +1,5 @@
// Copyright (C) 2023 The Qt Company Ltd.
-// SPDX-License-Identifier: BSD-3-Clause
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
#include <QApplication>
#include <QQmlApplicationEngine>
diff --git a/examples/webchannel/chatserver-cpp/CMakeLists.txt b/examples/webchannel/chatserver-cpp/CMakeLists.txt
index c599a04..9a448a7 100644
--- a/examples/webchannel/chatserver-cpp/CMakeLists.txt
+++ b/examples/webchannel/chatserver-cpp/CMakeLists.txt
@@ -1,5 +1,5 @@
# Copyright (C) 2022 The Qt Company Ltd.
-# SPDX-License-Identifier: BSD-3-Clause
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
cmake_minimum_required(VERSION 3.16)
project(chatserver LANGUAGES CXX)
diff --git a/examples/webchannel/standalone/CMakeLists.txt b/examples/webchannel/standalone/CMakeLists.txt
index 56317e5..5767bb7 100644
--- a/examples/webchannel/standalone/CMakeLists.txt
+++ b/examples/webchannel/standalone/CMakeLists.txt
@@ -1,5 +1,5 @@
# Copyright (C) 2022 The Qt Company Ltd.
-# SPDX-License-Identifier: BSD-3-Clause
+# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
cmake_minimum_required(VERSION 3.16)
project(standalone LANGUAGES CXX)