summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLucie Gérard <lucie.gerard@qt.io>2024-03-27 11:34:48 +0100
committerLucie Gérard <lucie.gerard@qt.io>2024-04-04 08:30:27 +0100
commitf03395bca6424d24b4125aa8c6ff98713a0b24f4 (patch)
tree71bee7febbbec8a60c98aa0ca120646e959e6c24
parent8eeeacd79a7dcd98bdd4a32227fea9614fd5d81e (diff)
Correct license for example and snippet files
According to QUIP-18 [1], all example and snippet files 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: I71c88d1ba956d8e2c03ae2a958eece693ded7bf1 Reviewed-by: Kai Köhne <kai.koehne@qt.io>
-rw-r--r--examples/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/clientapp/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/modelviewclient/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/modelviewserver/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/remoteobjects_server/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/simpleswitch/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/simpleswitch/directconnectclient/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/simpleswitch/directconnectserver/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/ssl/sslcppclient/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/ssl/sslserver/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/websockets/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/websockets/wsclient/CMakeLists.txt2
-rw-r--r--examples/remoteobjects/websockets/wsserver/CMakeLists.txt2
-rw-r--r--src/remoteobjects/doc/snippets/cmake-macros/CMakeLists.txt2
-rw-r--r--tests/manual/examples/CMakeLists.txt2
-rw-r--r--tests/manual/examples/ble/CMakeLists.txt2
-rw-r--r--tests/manual/examples/ble/bleclient/CMakeLists.txt2
-rw-r--r--tests/manual/examples/ble/bleserver/CMakeLists.txt2
-rw-r--r--tests/manual/examples/qmlmodelviewclient/CMakeLists.txt2
-rw-r--r--tests/manual/examples/simpleswitch/CMakeLists.txt2
-rw-r--r--tests/manual/examples/simpleswitch/directconnectdynamicclient/CMakeLists.txt2
-rw-r--r--tests/manual/examples/simpleswitch/registryconnectedclient/CMakeLists.txt2
-rw-r--r--tests/manual/examples/simpleswitch/registryconnectedserver/CMakeLists.txt2
24 files changed, 24 insertions, 24 deletions
diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
index b4edacd..f05addb 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/remoteobjects/CMakeLists.txt b/examples/remoteobjects/CMakeLists.txt
index ac6f748..c1b52c6 100644
--- a/examples/remoteobjects/CMakeLists.txt
+++ b/examples/remoteobjects/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
if (NOT ANDROID)
qt_internal_add_example(remoteobjects_server)
diff --git a/examples/remoteobjects/clientapp/CMakeLists.txt b/examples/remoteobjects/clientapp/CMakeLists.txt
index f7f1914..086bf1e 100644
--- a/examples/remoteobjects/clientapp/CMakeLists.txt
+++ b/examples/remoteobjects/clientapp/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(clientapp LANGUAGES CXX)
diff --git a/examples/remoteobjects/modelviewclient/CMakeLists.txt b/examples/remoteobjects/modelviewclient/CMakeLists.txt
index 607289b..23a3c6c 100644
--- a/examples/remoteobjects/modelviewclient/CMakeLists.txt
+++ b/examples/remoteobjects/modelviewclient/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(modelviewclient LANGUAGES CXX)
diff --git a/examples/remoteobjects/modelviewserver/CMakeLists.txt b/examples/remoteobjects/modelviewserver/CMakeLists.txt
index c80ebf9..1575727 100644
--- a/examples/remoteobjects/modelviewserver/CMakeLists.txt
+++ b/examples/remoteobjects/modelviewserver/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(modelviewserver LANGUAGES CXX)
diff --git a/examples/remoteobjects/remoteobjects_server/CMakeLists.txt b/examples/remoteobjects/remoteobjects_server/CMakeLists.txt
index 23e0313..2d88305 100644
--- a/examples/remoteobjects/remoteobjects_server/CMakeLists.txt
+++ b/examples/remoteobjects/remoteobjects_server/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(remoteobjects_server LANGUAGES CXX)
diff --git a/examples/remoteobjects/simpleswitch/CMakeLists.txt b/examples/remoteobjects/simpleswitch/CMakeLists.txt
index 23f245a..fba45e8 100644
--- a/examples/remoteobjects/simpleswitch/CMakeLists.txt
+++ b/examples/remoteobjects/simpleswitch/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
if (NOT ANDROID)
qt_internal_add_example(directconnectclient)
diff --git a/examples/remoteobjects/simpleswitch/directconnectclient/CMakeLists.txt b/examples/remoteobjects/simpleswitch/directconnectclient/CMakeLists.txt
index 8d40f73..5e048ca 100644
--- a/examples/remoteobjects/simpleswitch/directconnectclient/CMakeLists.txt
+++ b/examples/remoteobjects/simpleswitch/directconnectclient/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(directconnectclient LANGUAGES CXX)
diff --git a/examples/remoteobjects/simpleswitch/directconnectserver/CMakeLists.txt b/examples/remoteobjects/simpleswitch/directconnectserver/CMakeLists.txt
index 7bd2ecd..5372e5d 100644
--- a/examples/remoteobjects/simpleswitch/directconnectserver/CMakeLists.txt
+++ b/examples/remoteobjects/simpleswitch/directconnectserver/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(directconnectserver LANGUAGES CXX)
diff --git a/examples/remoteobjects/ssl/sslcppclient/CMakeLists.txt b/examples/remoteobjects/ssl/sslcppclient/CMakeLists.txt
index 570e829..d2d2e9d 100644
--- a/examples/remoteobjects/ssl/sslcppclient/CMakeLists.txt
+++ b/examples/remoteobjects/ssl/sslcppclient/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(sslcppclient LANGUAGES CXX)
diff --git a/examples/remoteobjects/ssl/sslserver/CMakeLists.txt b/examples/remoteobjects/ssl/sslserver/CMakeLists.txt
index 8f4c073..e416c4d 100644
--- a/examples/remoteobjects/ssl/sslserver/CMakeLists.txt
+++ b/examples/remoteobjects/ssl/sslserver/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(sslserver LANGUAGES CXX)
diff --git a/examples/remoteobjects/websockets/CMakeLists.txt b/examples/remoteobjects/websockets/CMakeLists.txt
index 806e361..f01229b 100644
--- a/examples/remoteobjects/websockets/CMakeLists.txt
+++ b/examples/remoteobjects/websockets/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
if(TARGET Qt::WebSockets AND TARGET Qt::Widgets)
qt_internal_add_example(wsclient)
diff --git a/examples/remoteobjects/websockets/wsclient/CMakeLists.txt b/examples/remoteobjects/websockets/wsclient/CMakeLists.txt
index 05a16d1..a771c6e 100644
--- a/examples/remoteobjects/websockets/wsclient/CMakeLists.txt
+++ b/examples/remoteobjects/websockets/wsclient/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(wsclient LANGUAGES CXX)
diff --git a/examples/remoteobjects/websockets/wsserver/CMakeLists.txt b/examples/remoteobjects/websockets/wsserver/CMakeLists.txt
index 777731c..231610c 100644
--- a/examples/remoteobjects/websockets/wsserver/CMakeLists.txt
+++ b/examples/remoteobjects/websockets/wsserver/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(wsserver LANGUAGES CXX)
diff --git a/src/remoteobjects/doc/snippets/cmake-macros/CMakeLists.txt b/src/remoteobjects/doc/snippets/cmake-macros/CMakeLists.txt
index 276fc61..a2df812 100644
--- a/src/remoteobjects/doc/snippets/cmake-macros/CMakeLists.txt
+++ b/src/remoteobjects/doc/snippets/cmake-macros/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)
diff --git a/tests/manual/examples/CMakeLists.txt b/tests/manual/examples/CMakeLists.txt
index 1418055..c1dd4af 100644
--- a/tests/manual/examples/CMakeLists.txt
+++ b/tests/manual/examples/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
if(TARGET Qt::Quick AND UNIX AND NOT ANDROID)
add_subdirectory(qmlmodelviewclient)
diff --git a/tests/manual/examples/ble/CMakeLists.txt b/tests/manual/examples/ble/CMakeLists.txt
index 174aa79..64748cd 100644
--- a/tests/manual/examples/ble/CMakeLists.txt
+++ b/tests/manual/examples/ble/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
add_subdirectory(bleclient)
add_subdirectory(bleserver)
diff --git a/tests/manual/examples/ble/bleclient/CMakeLists.txt b/tests/manual/examples/ble/bleclient/CMakeLists.txt
index 628a717..1fafb16 100644
--- a/tests/manual/examples/ble/bleclient/CMakeLists.txt
+++ b/tests/manual/examples/ble/bleclient/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(tst_bleclient VERSION "${QT_REPO_MODULE_VERSION}" LANGUAGES CXX)
diff --git a/tests/manual/examples/ble/bleserver/CMakeLists.txt b/tests/manual/examples/ble/bleserver/CMakeLists.txt
index 5f77f26..eedc4df 100644
--- a/tests/manual/examples/ble/bleserver/CMakeLists.txt
+++ b/tests/manual/examples/ble/bleserver/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(tst_bleserver VERSION "${QT_REPO_MODULE_VERSION}" LANGUAGES CXX)
diff --git a/tests/manual/examples/qmlmodelviewclient/CMakeLists.txt b/tests/manual/examples/qmlmodelviewclient/CMakeLists.txt
index c547813..59ac80b 100644
--- a/tests/manual/examples/qmlmodelviewclient/CMakeLists.txt
+++ b/tests/manual/examples/qmlmodelviewclient/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(tst_qmlmodelviewclient VERSION "${QT_REPO_MODULE_VERSION}" LANGUAGES CXX)
diff --git a/tests/manual/examples/simpleswitch/CMakeLists.txt b/tests/manual/examples/simpleswitch/CMakeLists.txt
index 3af13a1..71a2e78 100644
--- a/tests/manual/examples/simpleswitch/CMakeLists.txt
+++ b/tests/manual/examples/simpleswitch/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
if (NOT ANDROID)
add_subdirectory(directconnectdynamicclient)
diff --git a/tests/manual/examples/simpleswitch/directconnectdynamicclient/CMakeLists.txt b/tests/manual/examples/simpleswitch/directconnectdynamicclient/CMakeLists.txt
index c147fa2..7d342af 100644
--- a/tests/manual/examples/simpleswitch/directconnectdynamicclient/CMakeLists.txt
+++ b/tests/manual/examples/simpleswitch/directconnectdynamicclient/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(tst_directconnectdynamicclient VERSION "${QT_REPO_MODULE_VERSION}" LANGUAGES CXX)
diff --git a/tests/manual/examples/simpleswitch/registryconnectedclient/CMakeLists.txt b/tests/manual/examples/simpleswitch/registryconnectedclient/CMakeLists.txt
index aa75b41..aeedea7 100644
--- a/tests/manual/examples/simpleswitch/registryconnectedclient/CMakeLists.txt
+++ b/tests/manual/examples/simpleswitch/registryconnectedclient/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(tst_registryconnectedclient VERSION "${QT_REPO_MODULE_VERSION}" LANGUAGES CXX)
diff --git a/tests/manual/examples/simpleswitch/registryconnectedserver/CMakeLists.txt b/tests/manual/examples/simpleswitch/registryconnectedserver/CMakeLists.txt
index dc6a85b..c8eed68 100644
--- a/tests/manual/examples/simpleswitch/registryconnectedserver/CMakeLists.txt
+++ b/tests/manual/examples/simpleswitch/registryconnectedserver/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(tst_registryconnectedserver VERSION "${QT_REPO_MODULE_VERSION}" LANGUAGES CXX)