Warning, /sdk/cutehmi/qbs/imports/cutehmi/PuppetExtension.qbs is written in an unsupported language. File is not indexed.

0001 import qbs
0002 import qbs.FileInfo
0003 
0004 import "Extension.qbs" as Extension
0005 
0006 /**
0007   Puppet extension product.
0008   */
0009 Extension {
0010         name: "puppet." + originalExtension
0011 
0012          extensionType: "puppet"
0013 
0014         installSourceBase: sourceDirectory + "/" + cutehmi.dirs.puppetSourceSubdir
0015 
0016         dedicatedInstallSubdir: cutehmi.dirs.puppetsInstallSubdir + "/" + FileInfo.relativePath(cutehmi.dirs.extensionsSourceDir, sourceDirectory)
0017 
0018         property string originalExtension
0019 
0020         cutehmi.metadata.artifacts: false
0021 
0022         Depends { name: "cutehmi.qmldir" }
0023         cutehmi.qmldir.puppet: true
0024         // PuppetExtension normally should not have its own binaries. The only reason it would want its own binaries is for workarounds.
0025         // Because of workarounds plugins array is always concatenated with that of original extension, so if there are no workarounds
0026         // it must be explicitly specified as empty. Otherwise a default plugin entry would act as a supposed workaround.
0027         // Note: plugin entry in 'qmldir' of a puppet extension will be created by 'cutehmi.qmldir' only if original extensions has a
0028         // plugin.
0029         //<qbs-imports-cutehmi-4.workaround target="QtCreator_Windows" cause="missing">
0030         Properties {
0031                 condition: qbs.targetOS.contains("windows")
0032                 cutehmi.qmldir.plugins: [{
0033                                 name: "CuteHMI.Workarounds.PuppetBootloader.0",
0034                                 path: FileInfo.relativePath(cutehmi.dirs.installDir + "/" + dedicatedInstallSubdir,
0035                                                                                         cutehmi.dirs.installDir + "/" + cutehmi.dirs.extensionsInstallSubdir)
0036                         }]
0037         }
0038         //</qbs-imports-cutehmi-4.workaround>
0039         cutehmi.qmldir.plugins: []
0040 
0041         Depends { name: originalExtension }
0042 }
0043 
0044 //(c)C: Copyright © 2019-2022, Michał Policht <michal@policht.pl>. All rights reserved.
0045 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0046 //(c)C: This file is a part of CuteHMI.
0047 //(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.
0048 //(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.
0049 //(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/>.
0050 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0051 //(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:
0052 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0053 //(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.