summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLucie Gérard <lucie.gerard@qt.io>2024-02-23 13:25:42 +0100
committerLucie Gerard <lucie.gerard@qt.io>2024-04-04 13:43:26 +0000
commit5dbcc5f8d6235abce5596b33e8734db19479a9a2 (patch)
treeb2ce9a45eb94e2a01feb9ce9caaa9252bdc5d87a /doc
parent44c9b5162fc13dea1b9bba5145bc41121707526c (diff)
Correct doc snippet license
All files under doc/snippet should be licensed as documentation snippets and according to QUIP-18 [1] this is 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: I043e09eea06e18784886676602b54bb3291c39bb Reviewed-by: Kai Köhne <kai.koehne@qt.io>
Diffstat (limited to 'doc')
-rw-r--r--doc/snippets/platforms/cmake/linux/toolchain_integrity.cmake2
-rw-r--r--doc/snippets/platforms/cmake/win/toolchain_integrity.cmake2
-rw-r--r--doc/snippets/plugins/doc_src_plugins-howto.cmake2
-rw-r--r--doc/src/cmake/snippets/cmake/deploy_non_qml.cmake2
-rw-r--r--doc/src/cmake/snippets/cmake/deploy_qml.cmake2
-rw-r--r--doc/src/cmake/snippets/cmake/examples.cmake2
-rw-r--r--doc/src/cmake/snippets/cmake/helloworld_qtcore.cmake2
-rw-r--r--doc/src/cmake/snippets/cmake/helloworld_qtqml.cmake2
-rw-r--r--doc/src/cmake/snippets/cmake/helloworld_qtwidgets.cmake2
-rw-r--r--doc/src/cmake/snippets/cmake/helloworld_src_businesslogic.cmake2
-rw-r--r--doc/src/cmake/snippets/cmake/qt5_qt6_compatible.cmake2
11 files changed, 11 insertions, 11 deletions
diff --git a/doc/snippets/platforms/cmake/linux/toolchain_integrity.cmake b/doc/snippets/platforms/cmake/linux/toolchain_integrity.cmake
index 7b08e2fe8..21b94f8c5 100644
--- a/doc/snippets/platforms/cmake/linux/toolchain_integrity.cmake
+++ b/doc/snippets/platforms/cmake/linux/toolchain_integrity.cmake
@@ -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
set(TARGET_ROOT_PATH "/work/ghs/sa8155/es7/es7_dev_env/hlos_dev_boot")
set(CMAKE_BUILD_TYPE "Release")
diff --git a/doc/snippets/platforms/cmake/win/toolchain_integrity.cmake b/doc/snippets/platforms/cmake/win/toolchain_integrity.cmake
index 748d92583..41667ac18 100644
--- a/doc/snippets/platforms/cmake/win/toolchain_integrity.cmake
+++ b/doc/snippets/platforms/cmake/win/toolchain_integrity.cmake
@@ -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
#generic
set(CMAKE_SYSTEM_NAME Integrity)
diff --git a/doc/snippets/plugins/doc_src_plugins-howto.cmake b/doc/snippets/plugins/doc_src_plugins-howto.cmake
index 912b0eb70..afcf48b75 100644
--- a/doc/snippets/plugins/doc_src_plugins-howto.cmake
+++ b/doc/snippets/plugins/doc_src_plugins-howto.cmake
@@ -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
#! [import_plugins]
qt_import_plugins(myapp INCLUDE Qt::QLibInputPlugin)
diff --git a/doc/src/cmake/snippets/cmake/deploy_non_qml.cmake b/doc/src/cmake/snippets/cmake/deploy_non_qml.cmake
index f5405ba99..b8fa64b88 100644
--- a/doc/src/cmake/snippets/cmake/deploy_non_qml.cmake
+++ b/doc/src/cmake/snippets/cmake/deploy_non_qml.cmake
@@ -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
#! [basic setup]
cmake_minimum_required(VERSION 3.16)
diff --git a/doc/src/cmake/snippets/cmake/deploy_qml.cmake b/doc/src/cmake/snippets/cmake/deploy_qml.cmake
index 12f5ce1d5..a6f7d7f13 100644
--- a/doc/src/cmake/snippets/cmake/deploy_qml.cmake
+++ b/doc/src/cmake/snippets/cmake/deploy_qml.cmake
@@ -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
#! [basic setup]
cmake_minimum_required(VERSION 3.16)
diff --git a/doc/src/cmake/snippets/cmake/examples.cmake b/doc/src/cmake/snippets/cmake/examples.cmake
index 7a05d5a18..aedd25cf5 100644
--- a/doc/src/cmake/snippets/cmake/examples.cmake
+++ b/doc/src/cmake/snippets/cmake/examples.cmake
@@ -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
#! [2]
find_package(Qt6 REQUIRED COMPONENTS Core)
diff --git a/doc/src/cmake/snippets/cmake/helloworld_qtcore.cmake b/doc/src/cmake/snippets/cmake/helloworld_qtcore.cmake
index 20412929e..2c98a7f90 100644
--- a/doc/src/cmake/snippets/cmake/helloworld_qtcore.cmake
+++ b/doc/src/cmake/snippets/cmake/helloworld_qtcore.cmake
@@ -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/doc/src/cmake/snippets/cmake/helloworld_qtqml.cmake b/doc/src/cmake/snippets/cmake/helloworld_qtqml.cmake
index d7aa4ba57..23fa484a3 100644
--- a/doc/src/cmake/snippets/cmake/helloworld_qtqml.cmake
+++ b/doc/src/cmake/snippets/cmake/helloworld_qtqml.cmake
@@ -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/doc/src/cmake/snippets/cmake/helloworld_qtwidgets.cmake b/doc/src/cmake/snippets/cmake/helloworld_qtwidgets.cmake
index 562ff3b2e..7860a6de0 100644
--- a/doc/src/cmake/snippets/cmake/helloworld_qtwidgets.cmake
+++ b/doc/src/cmake/snippets/cmake/helloworld_qtwidgets.cmake
@@ -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/doc/src/cmake/snippets/cmake/helloworld_src_businesslogic.cmake b/doc/src/cmake/snippets/cmake/helloworld_src_businesslogic.cmake
index f88ab7e5f..fcd50472d 100644
--- a/doc/src/cmake/snippets/cmake/helloworld_src_businesslogic.cmake
+++ b/doc/src/cmake/snippets/cmake/helloworld_src_businesslogic.cmake
@@ -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_add_library(businesslogic STATIC
businesslogic.cpp
diff --git a/doc/src/cmake/snippets/cmake/qt5_qt6_compatible.cmake b/doc/src/cmake/snippets/cmake/qt5_qt6_compatible.cmake
index 58a9429aa..f8631bf70 100644
--- a/doc/src/cmake/snippets/cmake/qt5_qt6_compatible.cmake
+++ b/doc/src/cmake/snippets/cmake/qt5_qt6_compatible.cmake
@@ -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
#! [versionless_targets]
find_package(Qt6 COMPONENTS Core)