Re: [Qbs] Selecting target architecture for Android

2022-05-23 Thread Raphael Cotty
Hello, the libMapperoCore.so should have the architecture name like this: libMapperoCore-arch.so What type of product do you use for the MapperoCore? Raphael Le lun. 23 mai 2022 à 10:13, Christian Kandeler a écrit : > On 5/22/22 21:57, Alberto Mardegan wrote: > > So far I've built my Android

Re: [Qbs] Qt6 support

2020-12-04 Thread Raphael Cotty
Hi, I am using Qbs 1.17.1 and Qt Creator 4.13.3 installed with the Qt Maintenance tool. core5compact is a Qt 6 module which is automatically detected by the Qbs Qt module provider. Do you have a core5compact directory in your buildDir/genmodule/Qt/"lib number"/modules/Qt? Are you using Qt

Re: [Qbs] Qt6 support

2020-12-04 Thread Raphael Cotty
Hi, Qt.core5compat actually works with Qbs 1.17.1/Qt 6 What error do you see? Raph Le ven. 4 déc. 2020 à 12:52, Raphael Cotty a écrit : > Hi, > “Qt.core5compat” module has not been added yet. > > Qbs 1.17 works out of the box with Qt 6 (except the dependency with > core5compat

Re: [Qbs] Qt6 support

2020-12-04 Thread Raphael Cotty
Hi, “Qt.core5compat” module has not been added yet. Qbs 1.17 works out of the box with Qt 6 (except the dependency with core5compat). If you use Android then you'll need to use Qbs 1.18. I will look into adding core5compat in the Qt module provider. Might be other new modules as well... Raph

Re: [Qbs] Issues building for Android

2020-10-15 Thread Raphael Cotty
Hi, ok I created this issue: https://bugreports.qt.io/browse/QBS-1608 Can you close the qtc one? Thanks Raph Le jeu. 15 oct. 2020 à 13:33, Ola Røer Thorsen a écrit : > > tor. 15. okt. 2020 kl. 12:17 skrev Raphael Cotty >: > >> Hi, >> About the use of QtApplication i

Re: [Qbs] Issues building for Android

2020-10-14 Thread Raphael Cotty
if it works properly). Raph Le mer. 14 oct. 2020 à 18:59, Ola Røer Thorsen a écrit : > man. 12. okt. 2020 kl. 20:34 skrev Raphael Cotty >: > >> Hi, >> Looks like your android profile is not correct. >> > > Agreed. (It was set up automatically by QtCreator). >

Re: [Qbs] Android API level

2020-07-13 Thread Raphael Cotty
Yes, please fill a bug report. Raph Le sam. 11 juil. 2020 11:19, Alberto Mardegan a écrit : > Hi all, > While trying to build one of my existing projects for Android, I was > getting a build error: > > == > In file included from > >

Re: [Qbs] building android aab package help

2020-06-07 Thread Raphael Cotty
- the product is not linked at all when trying to multiplex > profiles. Should not be a problem in your case either. > The bottom line is that I get 2 binaries, a and b each getting it’s own > defines. > > Ivan > > 7 июня 2020 г., в 14:18, Raphael Cotty > написал(а): &

Re: [Qbs] building android aab package help

2020-06-07 Thread Raphael Cotty
file: project.profile > } > Profile { > name: «b» > sdk.packageType: «aab» > baseProfile: project.profile > } > qbs.profiles: [«a», «b»] > } > > Will that work? If no, would it be possible to make it working? > Note that this is pseu

Re: [Qbs] Using ConanfileProbe with yocto cross compiling toolchain

2020-05-23 Thread Raphael Cotty
Hi, I pushed some scripts in issue QBS-1188 . They allow to compile qbs inside yocto and also to use qbs to compile inside a recipe (just by inheriting from qbs). But when developing code using qtc this is not very convenient so I have a script that

Re: [Qbs] AAR dependency for APK generation

2020-05-21 Thread Raphael Cotty
Hi, qbs runs androiddeployqt with "--aux-mode" argument which disables the use of gradle. In this mode androiddeployqt only gathers dependencies. The rest of the job being made by qbs. So when you use androiddeployqt directly I guess it's without "--aux-mode". I could not find much information

Re: [Qbs] Android multiarch

2020-05-14 Thread Raphael Cotty
Hi, Yes, I use qtc to load my multi-arch app. Raph Le jeu. 14 mai 2020 à 14:37, Christian Gagneraud a écrit : > On Fri, 15 May 2020 at 00:28, Christian Gagneraud > wrote: > > > > On Fri, 15 May 2020 at 00:23, Raphael Cotty > wrote: > > > > > > Hi, >

Re: [Qbs] Android multiarch

2020-05-14 Thread Raphael Cotty
Hi, Can you try to use the QtApplication item instead of the CppApplication one? Raph Le jeu. 14 mai 2020 à 14:20, Christian Gagneraud a écrit : > On Thu, 14 May 2020 at 23:57, Richard Weickelt > wrote: > > > > > > > As an experiment, i've just tried Qt-5.14, and this has enabled > > >

Re: [Qbs] Qtc: Cannot find the androiddeploy Json file

2020-05-14 Thread Raphael Cotty
Hi, The json file used in android_support.qbs is an input file used by the androiddeployqt tool to generate the apk. Here, the term deploy refers to gathering all the qt dependencies (qt libs, plugins...) in a directory in order to generate the apk. The json file you talk about looks more to me

Re: [Qbs] Android multiarch

2020-05-14 Thread Raphael Cotty
Hi, are you using StaticLibrary or DynamicLibrary item for the libraries? Raph Le jeu. 14 mai 2020 à 13:34, Christian Gagneraud a écrit : > Hi there, > > As an experiment, i've just tried Qt-5.14, and this has enabled > multi-arch on Android. > I can select the list of architecture i want to

Re: [Qbs] Signing an Android APK

2020-05-11 Thread Raphael Cotty
, Christian Gagneraud a écrit : > On Mon, 11 May 2020 at 09:03, Raphael Cotty > wrote: > > > > Hi, > > > > If you look at the sdk.qbs file in the Android module then you'll see > that you can provide a file for the keystore (pattern *.keytstore). > > If not then qbs

Re: [Qbs] Signing an Android APK

2020-05-10 Thread Raphael Cotty
Hi, If you look at the sdk.qbs file in the Android module then you'll see that you can provide a file for the keystore (pattern *.keytstore). If not then qbs uses the default keystore file ($HOME/.android/debug.keystore on Linux). Qbs also relies on androiddeployqt but only to gather the

[Qbs] building android aab package help

2020-04-14 Thread Raphael Cotty
Hi all, I am struggling to find a way to build the aab package (non runnable package required by google store) on the android platform. For this platform the default qbs product type is changed from application to android.apk (runnable package). What I am trying to achieve is allowing the user to

Re: [Qbs] Use of qbs.architecture with qtc

2020-02-03 Thread Raphael Cotty
févr. 2020 à 13:41, Christian Kandeler a écrit : > On Sun, 2 Feb 2020 11:57:20 +0100 > Raphael Cotty wrote: > > > I see that the qbs.architecture property is set for the android platform > by > > the different qbs tools. > > But it's not set by qbs-setup-qt or qbs-setu

[Qbs] Use of qbs.architecture with qtc

2020-02-02 Thread Raphael Cotty
Hi, I see that the qbs.architecture property is set for the android platform by the different qbs tools. But it's not set by qbs-setup-qt or qbs-setup-toolchains for gcc. Although the doc says: "undefined indicates that the target platform is architecture-independent (for example the CLR or

Re: [Qbs] Android deployment

2019-09-12 Thread Raphael Cotty
> Christian > > > From: Qbs on behalf of Raphael Cotty < > raphael.co...@gmail.com> > Sent: Monday, September 9, 2019 11:20 PM > To: qbs@qt-project.org > Subject: [Qbs] Android deployment > > Hi, > I am trying to deploy a

[Qbs] Android deployment

2019-09-09 Thread Raphael Cotty
Hi, I am trying to deploy a qbs app to my android device. I get the following message: Initializing deployment to Android device/simulator Deploying to QOBALBZ5OBVCJFMB 23:10:18: Exécution des étapes pour le projet Marguerite... ASSERT: m_ruleNode->children.contains(input) The following

[QBS] qbs and qtcreator

2013-09-15 Thread Raphael Cotty
Hello, I am trying to load my qbs project with qtcreator (2.8.0). But I get this error: /home/raph/qtcreator-2.8.0/share/qtcreator/qbs/share/qbs/modules/Qt/core/core.qbs:73: error: TypeError: Result of expression 'version' [undefined] is not an object. Is qbs functional with qcreator 2.8?

[QBS] Changing cpp.warningLevel property globally

2013-09-13 Thread Raphael Cotty
Hi, Is there a way to set cpp.warningLevel to none for all the different projects? Thanks ___ QBS mailing list QBS@qt-project.org http://lists.qt-project.org/mailman/listinfo/qbs

Re: [QBS] Changing cpp.warningLevel property globally

2013-09-13 Thread Raphael Cotty
Hi, Thanks Is there a way to store the global options for a project in a file? Or defining a profile for a project. This file can then be saved in source repository. Raphael Cotty From: qbs-bounces+r.cotty=cascade-technologies@qt-project.org [qbs

Re: [QBS] Retreive git describe result to set cpp.defines value

2013-09-09 Thread Raphael Cotty
Thanks, it works. Is there a way to get the list of undocumented features? Regards Raph From: Joerg Bornemann [joerg.bornem...@digia.com] Sent: 09 September 2013 09:30 To: Raphael Cotty Cc: qbs@qt-project.org Subject: Re: [QBS] Retreive git describe