Warning, /sdk/cutehmi/tools/cutehmi.console.0/project.qbs is written in an unsupported language. File is not indexed.
0001 import qbs 1.0
0002
0003 import cutehmi
0004
0005 cutehmi.ToolProject {
0006 groupSourceDirectory: path
0007
0008 condition: !qbs.targetOS.contains("android")
0009
0010 references: [
0011 "tests/tests.qbs"
0012 ]
0013
0014 cutehmi.Tool {
0015 name: parent.name
0016
0017 consoleApplication: true
0018
0019 vendor: "CuteHMI"
0020
0021 domain: "cutehmi.kde.org"
0022
0023 friendlyName: "Console"
0024
0025 description: "interactive command line interface, which allows one to browse QML object model and evaluate expressions."
0026
0027 files: [
0028 "README.md",
0029 "i18n/cutehmi-console-0_en.ts",
0030 "src/cutehmi/console/Command.cpp",
0031 "src/cutehmi/console/Command.hpp",
0032 "src/cutehmi/console/Exception.cpp",
0033 "src/cutehmi/console/Exception.hpp",
0034 "src/cutehmi/console/InputHandler.cpp",
0035 "src/cutehmi/console/InputHandler.hpp",
0036 "src/cutehmi/console/Interpreter.cpp",
0037 "src/cutehmi/console/Interpreter.hpp",
0038 "src/cutehmi/console/logging.cpp",
0039 "src/cutehmi/console/logging.hpp",
0040 "src/main.cpp",
0041 ]
0042
0043 cutehmi.dirs.artifacts: true
0044
0045 Depends { name: "CuteHMI.2" }
0046
0047 Depends { name: "cutehmi.doxygen" }
0048 cutehmi.doxygen.exclude: ['dev', 'tests', 'src']
0049
0050 Depends { name: "cutehmi.i18n" }
0051 }
0052 }
0053
0054 //(c)C: Copyright © 2020-2024, Michał Policht <michal@policht.pl>. All rights reserved.
0055 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0056 //(c)C: This file is a part of CuteHMI.
0057 //(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.
0058 //(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.
0059 //(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/>.
0060 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0061 //(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:
0062 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0063 //(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.