Warning, /sdk/cutehmi/extensions/CuteHMI/SharedDatabase.1/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.SharedDatabase.1"
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: "Shared Database"
0020 
0021                 description: "Shared database connection provider."
0022 
0023                 files: [
0024                         "CHANGES.md",
0025                         "Console.qml",
0026                         "LICENSE.MIT",
0027                         "LICENSE.LGPL3",
0028                         "README.md",
0029                         "include/cutehmi/shareddatabase/DataObject.hpp",
0030                         "include/cutehmi/shareddatabase/Database.hpp",
0031                         "include/cutehmi/shareddatabase/DatabaseWorker.hpp",
0032                         "include/cutehmi/shareddatabase/PostgresMaintenance.hpp",
0033                         "include/cutehmi/shareddatabase/internal/DatabaseConfig.hpp",
0034                         "include/cutehmi/shareddatabase/internal/DatabaseConnectionHandler.hpp",
0035                         "include/cutehmi/shareddatabase/internal/DatabaseThread.hpp",
0036                         "include/cutehmi/shareddatabase/internal/common.hpp",
0037                         "include/cutehmi/shareddatabase/internal/platform.hpp",
0038                         "include/cutehmi/shareddatabase/logging.hpp",
0039                         "include/cutehmi/shareddatabase/metadata.hpp",
0040                         "src/cutehmi/shareddatabase/DataObject.cpp",
0041                         "src/cutehmi/shareddatabase/Database.cpp",
0042                         "src/cutehmi/shareddatabase/DatabaseWorker.cpp",
0043                         "src/cutehmi/shareddatabase/PostgresMaintenance.cpp",
0044                         "src/cutehmi/shareddatabase/internal/DatabaseConfig.cpp",
0045                         "src/cutehmi/shareddatabase/internal/DatabaseConnectionHandler.cpp",
0046                         "src/cutehmi/shareddatabase/internal/DatabaseDictionary.cpp",
0047                         "src/cutehmi/shareddatabase/internal/DatabaseDictionary.hpp",
0048                         "src/cutehmi/shareddatabase/internal/DatabaseThread.cpp",
0049                         "src/cutehmi/shareddatabase/internal/QMLPlugin.cpp",
0050                         "src/cutehmi/shareddatabase/internal/QMLPlugin.hpp",
0051                         "src/cutehmi/shareddatabase/logging.cpp",
0052                 ]
0053 
0054                 Depends { name: "cutehmi.doxygen" }
0055                 cutehmi.doxygen.warnIfUndocumented: false
0056                 cutehmi.doxygen.useDoxyqml: true
0057                 cutehmi.doxygen.exclude: ['dev', 'puppet', 'tests']
0058 
0059                 Depends { name: "cutehmi.qmldir" }
0060                 cutehmi.qmldir.exclude: ["^designer/.*", "\.js$"]
0061 
0062                 Depends { name: "cutehmi.qmltyperegistrar" }
0063 
0064                 Depends { name: "cutehmi.probes.libpq" }        // Using probe just to print some debug output. It is not required to link against client library.
0065 
0066                 Depends { name: "Qt.sql" }
0067 
0068                 Depends { name: "CuteHMI.Services.3" }
0069 
0070                 Export {
0071                         Depends { name: "Qt.sql" }
0072 
0073                         Depends { name: "CuteHMI.Services.3" }
0074                 }
0075         }
0076 }
0077 
0078 //(c)C: Copyright © 2022-2024, Michał Policht <michal@policht.pl>. All rights reserved.
0079 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0080 //(c)C: This file is a part of CuteHMI.
0081 //(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.
0082 //(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.
0083 //(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/>.
0084 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0085 //(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:
0086 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0087 //(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.