summaryrefslogtreecommitdiffstats
path: root/examples
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 /examples
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>
Diffstat (limited to 'examples')
-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
14 files changed, 14 insertions, 14 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)