Warning, /sdk/cutehmi/extensions/CuteHMI.2/project.qbs is written in an unsupported language. File is not indexed.

0001 import qbs
0002 
0003 import cutehmi
0004 
0005 Project {
0006         name: "CuteHMI.2"
0007 
0008         references: [
0009                 "tests/tests.qbs"
0010         ]
0011 
0012         cutehmi.CppExtension {
0013                 name: parent.name
0014 
0015                 vendor: "CuteHMI"
0016 
0017                 domain: "cutehmi.kde.org"
0018 
0019                 friendlyName: "CuteHMI"
0020 
0021                 description: "Provides core functionality to other modules."
0022 
0023                 i18n: true
0024 
0025                 files: [
0026                         "README.md",
0027                         "LICENSE.MIT",
0028                         "LICENSE.LGPL3",
0029                         "include/cutehmi/Init.hpp",
0030                         "include/cutehmi/Initializer.hpp",
0031                         "include/cutehmi/InplaceError.hpp",
0032                         "include/cutehmi/Internationalizer.hpp",
0033                         "include/cutehmi/Message.hpp",
0034                         "include/cutehmi/Messenger.hpp",
0035                         "include/cutehmi/Notifier.hpp",
0036                         "include/cutehmi/constants.hpp",
0037                         "include/cutehmi/functions.hpp",
0038                         "include/cutehmi/internal/LoggingCategoryCheck.hpp",
0039                         "include/cutehmi/macros.hpp",
0040                         "include/cutehmi/wrappers.hpp",
0041                         "include/cutehmi/Error.hpp",
0042                         "include/cutehmi/ErrorException.hpp",
0043                         "include/cutehmi/ErrorInfo.hpp",
0044                         "include/cutehmi/Exception.hpp",
0045                         "include/cutehmi/ExceptionMixin.hpp",
0046                         "include/cutehmi/MPtr.hpp",
0047                         "include/cutehmi/NonCopyable.hpp",
0048                         "include/cutehmi/NonMovable.hpp",
0049                         "include/cutehmi/Notification.hpp",
0050                         "include/cutehmi/NotificationListModel.hpp",
0051                         "include/cutehmi/Singleton.hpp",
0052                         "include/cutehmi/Worker.hpp",
0053                         "include/cutehmi/internal/common.hpp",
0054                         "include/cutehmi/internal/platform.hpp",
0055                         "include/cutehmi/internal/singleton.hpp",
0056                         "include/cutehmi/logging.hpp",
0057                         "include/cutehmi/loggingMacros.hpp",
0058                         "include/cutehmi/metadata.hpp",
0059                         "src/cutehmi/Error.cpp",
0060                         "src/cutehmi/ErrorException.cpp",
0061                         "src/cutehmi/ErrorInfo.cpp",
0062                         "src/cutehmi/Exception.cpp",
0063                         "src/cutehmi/Init.cpp",
0064                         "src/cutehmi/InplaceError.cpp",
0065                         "src/cutehmi/Internationalizer.cpp",
0066                         "src/cutehmi/Message.cpp",
0067                         "src/cutehmi/Messenger.cpp",
0068                         "src/cutehmi/Notification.cpp",
0069                         "src/cutehmi/NotificationListModel.cpp",
0070                         "src/cutehmi/Notifier.cpp",
0071                         "src/cutehmi/Singleton.cpp",
0072                         "src/cutehmi/Worker.cpp",
0073                         "src/cutehmi/functions.cpp",
0074                         "src/cutehmi/internal/singleton.cpp",
0075                         "src/cutehmi/logging.cpp",
0076                         "src/cutehmi/internal/LoggingCategoryCheck.cpp",
0077                         "src/cutehmi/internal/QMLPlugin.cpp",
0078                         "src/cutehmi/internal/QMLPlugin.hpp",
0079                 ]
0080 
0081                 Depends { name: "Qt.core" }
0082 
0083                 Depends { name: "Qt.qml" }
0084 
0085                 cutehmi.dirs.artifacts: true
0086 
0087                 Depends { name: "cutehmi.doxygen" }
0088                 cutehmi.doxygen.warnIfUndocumented: false
0089                 cutehmi.doxygen.useDoxyqml: true
0090                 cutehmi.doxygen.exclude: ['dev', 'tests']
0091 
0092                 Depends { name: "cutehmi.init" }
0093 
0094                 Depends { name: "cutehmi.qmldir" }
0095 
0096                 Depends { name: "cutehmi.qmltyperegistrar" }
0097 
0098                 Export {
0099                         Depends { name: "Qt.core" }
0100 
0101                         Depends { name: "Qt.qml" }
0102                 }
0103         }
0104 
0105         cutehmi.AndroidQMLPlugin {
0106                 extensionName: parent.name
0107         }
0108 }
0109 
0110 //(c)C: Copyright © 2020-2024, Michał Policht <michal@policht.pl>. All rights reserved.
0111 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0112 //(c)C: This file is a part of CuteHMI.
0113 //(c)C: CuteHMI is free software: you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
0114 //(c)C: CuteHMI is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
0115 //(c)C: You should have received a copy of the GNU Lesser General Public License along with CuteHMI.  If not, see <https://www.gnu.org/licenses/>.
0116 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0117 //(c)C: Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
0118 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0119 //(c)C: THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.