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

0001 import qbs
0002 import qbs.FileInfo
0003 import qbs.File
0004 
0005 import "CommonProduct.qbs" as CommonProduct
0006 
0007 /**
0008   Android QML plugin product.
0009   */
0010 CommonProduct {
0011         name:  "android_" + extensionName
0012 
0013         condition: qbs.targetOS.contains("android")
0014 
0015         type: project.buildBinaries ? ["dynamiclibrary", "android.nativelibrary"] : []
0016 
0017         targetName: extensionName
0018 
0019         cutehmiType: "androidQMLPlugin"
0020 
0021         baseName: isNaN(extensionName.substr(extensionName.lastIndexOf(".", extensionName.length - 1) + 1)) ? extensionName : extensionName.substring(0, extensionName.lastIndexOf(".", extensionName.length - 1))
0022 
0023         files: {
0024                 var namespaceRelativePath = baseName.toLowerCase().replace(/\./g, '/')
0025                 var internalDirPath = sourceDirectory + "/src/" + namespaceRelativePath + "/internal"
0026                 var headerPath = internalDirPath + "/QMLPlugin.hpp"
0027                 var sourcePath = internalDirPath + "/QMLPlugin.cpp"
0028 
0029                 return [headerPath, sourcePath]
0030         }
0031 
0032         property string extensionName
0033 
0034         property string extensionRelativePath: FileInfo.relativePath(cutehmi.dirs.extensionsSourceDir, sourceDirectory)
0035 
0036         Group {
0037                 name: "Android QML plugin"
0038                 fileTagsFilter: "dynamiclibrary"
0039                 qbs.install: true
0040                 qbs.installDir: cutehmi.dirs.extensionsInstallSubdir + "/" + extensionRelativePath
0041         }
0042 
0043         Depends { name: extensionName }
0044 
0045         Depends { name: "Qt.qml" }
0046 
0047         Depends { name: "cutehmi.cpp" }
0048 
0049         Depends { name: "cutehmi.dirs" }
0050 }
0051 
0052 //(c)C: Copyright © 2019-2020, Michał Policht <michal@policht.pl>, Wojtek Zygmuntowicz <wzygmuntowicz.zygmuntowicz@gmail.com>. All rights reserved.
0053 //(c)C: SPDX-License-Identifier: LGPL-3.0-or-later OR MIT
0054 //(c)C: This file is a part of CuteHMI.
0055 //(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.
0056 //(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.
0057 //(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/>.
0058 //(c)C: Additionally, this file is licensed under terms of MIT license as expressed below.
0059 //(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:
0060 //(c)C: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
0061 //(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.