Re: [Interest] Qmake to CMake project conversion android build

2022-11-16 Thread Michael Heiser | SYSTRONIK Elektronik und Systemtechnik GmbH
To answer this myself: Get rid of all find_package(Qt5...) in CMakeList.txt not containing source files. Only search for qt packages in library or application related CMakeList.txt. if(ANDROID) set(QT_ANDROID_APPLICATION_BINARY EuroSoft_live) endif() has to be inserted before find_package()

Re: [Interest] ASAN (Qt 6.4 + Glib) build shows stackoverflow in trivial Qt program

2022-11-16 Thread Thiago Macieira
On Wednesday, 16 November 2022 05:52:35 PST Dennis Luehring wrote: > > Fixed in https://codereview.qt-project.org/c/qt/qtbase/+/442720 > > your fix was rejected for 6.4.1 It's not "rejected". I never requested it be included in 6.4.1 branch because it's not release-critical. It'll be in 6.4.2.

Re: [Interest] Android: how to add Firebase dependency?

2022-11-16 Thread Alexander Dyagilev
I've tried the same for Qt6 - builds fine. Any workarounds to get it built for Qt 5.12? On 11/16/2022 4:18 PM, Alexander Dyagilev wrote: Hello, I would like to use it the same way as in any native Android app not using Qt. I'm trying to add all the required dependencies to build.gradle and

Re: [Interest] Is 6.x finally there ??

2022-11-16 Thread Volker Hilsheimer via Interest
Rejoice! Once https://codereview.qt-project.org/c/qt/qtbase/+/443474 has merged succesfully there’ll be a public API again that allows applications to extend the list of supported clipboard formats with Windows and mac/iOS specific converter implementations. Feedback very much welcome. Volker

Re: [Interest] ASAN (Qt 6.4 + Glib) build shows stackoverflow in trivial Qt program

2022-11-16 Thread Dennis Luehring
Am 10.11.2022 um 20:40 schrieb Thiago Macieira: On Thursday, 10 November 2022 00:23:52 PST Dennis Luehring wrote: > #1 0x7f08b15289a1 in g_object_get_valist ../glib/gobject/gobject.c:2659 > #2 0x7f08b1529029 in g_object_get ../glib/gobject/gobject.c:2754 > #3 0x7f08b3eee24b in gtkS

Re: [Interest] Android: how to add Firebase dependency?

2022-11-16 Thread Alexander Dyagilev
I've created a bit better version of this question here: https://stackoverflow.com/questions/74461428/add-firebase-dependency-to-qt-project Please help :) On 11/16/2022 4:18 PM, Alexander Dyagilev wrote: Hello, I would like to use it the same way as in any native Android app not using Qt.

[Interest] Android: how to add Firebase dependency?

2022-11-16 Thread Alexander Dyagilev
Hello, I would like to use it the same way as in any native Android app not using Qt. I'm trying to add all the required dependencies to build.gradle and getting weird errors. I'm not good in Gradle so any help is appreciated (if this is possible at all, because I'm using quite old Qt 5.12

Re: [Interest] Qmake to CMake project conversion android build

2022-11-16 Thread Michael Heiser | SYSTRONIK Elektronik und Systemtechnik GmbH
I’m using Qt Creator and in Run EuroSoft live is already present: [cid:image002.png@01D8F9BF.37A3EFB0] Regards Michael Von: Alexey Edelev Gesendet: Mittwoch, 16. November 2022 13:09 An: Michael Heiser | SYSTRONIK Elektronik und Systemtechnik GmbH Cc: interest@qt-project.org Betreff: Re: [Inte

Re: [Interest] Qmake to CMake project conversion android build

2022-11-16 Thread Alexey Edelev
Hi, Do you use Qt Creator to build, deploy and run the application? If yes I would guess you need to switch the "Run" target on in bottom part of the left panel. Regards, Alexey. ср, 16 нояб. 2022 г. в 12:10, Michael Heiser | SYSTRONIK Elektronik und Systemtechnik GmbH : > Hello experts, > curr

[Interest] Qmake to CMake project conversion android build

2022-11-16 Thread Michael Heiser | SYSTRONIK Elektronik und Systemtechnik GmbH
Hello experts, currently trying to move from qmake to cmake. Starting point in my Framework was using qmake2cmake tool. This generated a bunch of heavy cmake files, stripped them down and got it working that my integrated internal libs are building on windows. I have managed to get building and