From 470d59eb5aa5a209292afeae3f0559b8e1ca8d2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucie=20G=C3=A9rard?= Date: Tue, 5 Jul 2022 15:03:31 +0200 Subject: Add license headers to cmake files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CMakeLists.txt and .cmake files of significant size (more than 2 lines according to our check in tst_license.pl) now have the copyright and license header. Existing copyright statements remain intact Task-number: QTBUG-88621 Change-Id: If432c07e9205f97f3c256ca2a8e682478d9dd82c Reviewed-by: Qt CI Bot Reviewed-by: Jörg Bornemann --- examples/sensors/CMakeLists.txt | 3 +++ examples/sensors/accelbubble/CMakeLists.txt | 3 +++ examples/sensors/grue/CMakeLists.txt | 3 +++ examples/sensors/grue/console_app/CMakeLists.txt | 3 +++ examples/sensors/grue/plugin/CMakeLists.txt | 3 +++ examples/sensors/maze/CMakeLists.txt | 3 +++ examples/sensors/qmlqtsensors/CMakeLists.txt | 3 +++ examples/sensors/qmlsensorgestures/CMakeLists.txt | 3 +++ examples/sensors/qmlsensorgestures/plugin/CMakeLists.txt | 3 +++ examples/sensors/sensor_explorer/CMakeLists.txt | 3 +++ examples/sensors/sensorgestures/CMakeLists.txt | 3 +++ examples/sensors/sensorsshowcase/CMakeLists.txt | 3 +++ examples/sensors/shakeit/CMakeLists.txt | 3 +++ 13 files changed, 39 insertions(+) (limited to 'examples/sensors') diff --git a/examples/sensors/CMakeLists.txt b/examples/sensors/CMakeLists.txt index 6a71bfac..32c68190 100644 --- a/examples/sensors/CMakeLists.txt +++ b/examples/sensors/CMakeLists.txt @@ -1,3 +1,6 @@ +# Copyright (C) 2022 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + if(TARGET Qt::Quick) qt_internal_add_example(grue) qt_internal_add_example(maze) diff --git a/examples/sensors/accelbubble/CMakeLists.txt b/examples/sensors/accelbubble/CMakeLists.txt index 83cc07cf..da746bdd 100644 --- a/examples/sensors/accelbubble/CMakeLists.txt +++ b/examples/sensors/accelbubble/CMakeLists.txt @@ -1,3 +1,6 @@ +# Copyright (C) 2022 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + cmake_minimum_required(VERSION 3.16) project(accelbubble LANGUAGES CXX) diff --git a/examples/sensors/grue/CMakeLists.txt b/examples/sensors/grue/CMakeLists.txt index 8bdc8d03..55e234ce 100644 --- a/examples/sensors/grue/CMakeLists.txt +++ b/examples/sensors/grue/CMakeLists.txt @@ -1,3 +1,6 @@ +# Copyright (C) 2022 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + cmake_minimum_required(VERSION 3.16) project(grue_app LANGUAGES CXX) diff --git a/examples/sensors/grue/console_app/CMakeLists.txt b/examples/sensors/grue/console_app/CMakeLists.txt index 26c22b65..c7134be2 100644 --- a/examples/sensors/grue/console_app/CMakeLists.txt +++ b/examples/sensors/grue/console_app/CMakeLists.txt @@ -1,3 +1,6 @@ +# Copyright (C) 2022 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + cmake_minimum_required(VERSION 3.16) project(detect_grue LANGUAGES CXX) diff --git a/examples/sensors/grue/plugin/CMakeLists.txt b/examples/sensors/grue/plugin/CMakeLists.txt index 10e554fe..26b5d624 100644 --- a/examples/sensors/grue/plugin/CMakeLists.txt +++ b/examples/sensors/grue/plugin/CMakeLists.txt @@ -1,3 +1,6 @@ +# Copyright (C) 2022 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + cmake_minimum_required(VERSION 3.16) project(qtsensors_grue LANGUAGES CXX) diff --git a/examples/sensors/maze/CMakeLists.txt b/examples/sensors/maze/CMakeLists.txt index c713d317..f8330413 100644 --- a/examples/sensors/maze/CMakeLists.txt +++ b/examples/sensors/maze/CMakeLists.txt @@ -1,3 +1,6 @@ +# Copyright (C) 2022 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + cmake_minimum_required(VERSION 3.16) project(maze LANGUAGES CXX) diff --git a/examples/sensors/qmlqtsensors/CMakeLists.txt b/examples/sensors/qmlqtsensors/CMakeLists.txt index 32d5c1b4..6f95ebd3 100644 --- a/examples/sensors/qmlqtsensors/CMakeLists.txt +++ b/examples/sensors/qmlqtsensors/CMakeLists.txt @@ -1,3 +1,6 @@ +# Copyright (C) 2022 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + cmake_minimum_required(VERSION 3.16) project(qmlqtsensors LANGUAGES CXX) diff --git a/examples/sensors/qmlsensorgestures/CMakeLists.txt b/examples/sensors/qmlsensorgestures/CMakeLists.txt index f9c35206..b7c13c93 100644 --- a/examples/sensors/qmlsensorgestures/CMakeLists.txt +++ b/examples/sensors/qmlsensorgestures/CMakeLists.txt @@ -1,3 +1,6 @@ +# Copyright (C) 2022 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + cmake_minimum_required(VERSION 3.16) project(qmlsensorgestures LANGUAGES CXX) diff --git a/examples/sensors/qmlsensorgestures/plugin/CMakeLists.txt b/examples/sensors/qmlsensorgestures/plugin/CMakeLists.txt index abc405b2..480fe220 100644 --- a/examples/sensors/qmlsensorgestures/plugin/CMakeLists.txt +++ b/examples/sensors/qmlsensorgestures/plugin/CMakeLists.txt @@ -1,3 +1,6 @@ +# Copyright (C) 2022 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + cmake_minimum_required(VERSION 3.16) project(qtsensorgestures_counterplugin LANGUAGES CXX) diff --git a/examples/sensors/sensor_explorer/CMakeLists.txt b/examples/sensors/sensor_explorer/CMakeLists.txt index db0d95dc..c0bccf80 100644 --- a/examples/sensors/sensor_explorer/CMakeLists.txt +++ b/examples/sensors/sensor_explorer/CMakeLists.txt @@ -1,3 +1,6 @@ +# Copyright (C) 2022 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + cmake_minimum_required(VERSION 3.16) project(sensor_explorer LANGUAGES CXX) diff --git a/examples/sensors/sensorgestures/CMakeLists.txt b/examples/sensors/sensorgestures/CMakeLists.txt index 3a56bbc1..d7b274a9 100644 --- a/examples/sensors/sensorgestures/CMakeLists.txt +++ b/examples/sensors/sensorgestures/CMakeLists.txt @@ -1,3 +1,6 @@ +# Copyright (C) 2022 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + cmake_minimum_required(VERSION 3.16) project(gesture LANGUAGES CXX) diff --git a/examples/sensors/sensorsshowcase/CMakeLists.txt b/examples/sensors/sensorsshowcase/CMakeLists.txt index adce6612..8575af75 100644 --- a/examples/sensors/sensorsshowcase/CMakeLists.txt +++ b/examples/sensors/sensorsshowcase/CMakeLists.txt @@ -1,3 +1,6 @@ +# Copyright (C) 2022 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + cmake_minimum_required(VERSION 3.16) project(sensorsshowcase LANGUAGES CXX) diff --git a/examples/sensors/shakeit/CMakeLists.txt b/examples/sensors/shakeit/CMakeLists.txt index 769c0f98..b455090c 100644 --- a/examples/sensors/shakeit/CMakeLists.txt +++ b/examples/sensors/shakeit/CMakeLists.txt @@ -1,3 +1,6 @@ +# Copyright (C) 2022 The Qt Company Ltd. +# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause + cmake_minimum_required(VERSION 3.16) project(shakeit LANGUAGES CXX) -- cgit v1.2.3