From c22fc1335536bb56576c37ee5245558a2bac2ebb Mon Sep 17 00:00:00 2001 From: zty199 <46324746+zty199@users.noreply.github.com> Date: Tue, 4 Jun 2024 17:42:51 +0800 Subject: [PATCH] chore: add copyright and licensing info for new cmake files add copyright and licensing info for new cmake files Log: add copyright and licensing info for new cmake files --- gio-qt/qt5.cmake | 4 ++++ gio-qt/qt6.cmake | 4 ++++ qgio-tools/qt5.cmake | 4 ++++ qgio-tools/qt6.cmake | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/gio-qt/qt5.cmake b/gio-qt/qt5.cmake index 30ddaae..f5c986e 100644 --- a/gio-qt/qt5.cmake +++ b/gio-qt/qt5.cmake @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. +# +# SPDX-License-Identifier: CC0-1.0 + # Find the QtWidgets library find_package(Qt5 ${QT_MINIMUM_VERSION} CONFIG REQUIRED Core) diff --git a/gio-qt/qt6.cmake b/gio-qt/qt6.cmake index 838bb95..c8e2067 100644 --- a/gio-qt/qt6.cmake +++ b/gio-qt/qt6.cmake @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. +# +# SPDX-License-Identifier: CC0-1.0 + # Find the QtWidgets library find_package(Qt6 REQUIRED COMPONENTS Core) diff --git a/qgio-tools/qt5.cmake b/qgio-tools/qt5.cmake index bcf54b7..9517ad9 100644 --- a/qgio-tools/qt5.cmake +++ b/qgio-tools/qt5.cmake @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. +# +# SPDX-License-Identifier: CC0-1.0 + add_executable (qgio-tools main.cpp) target_link_libraries (qgio-tools gio-qt_qt5) diff --git a/qgio-tools/qt6.cmake b/qgio-tools/qt6.cmake index 8bd65eb..f70966a 100644 --- a/qgio-tools/qt6.cmake +++ b/qgio-tools/qt6.cmake @@ -1,3 +1,7 @@ +# SPDX-FileCopyrightText: 2024 UnionTech Software Technology Co., Ltd. +# +# SPDX-License-Identifier: CC0-1.0 + add_executable(qgio-tools-qt6 main.cpp) target_link_libraries(qgio-tools-qt6 gio-qt_qt6)