Re: [Development] Linking androiddeployqt: boot-strap library or libQt5Core

2019-05-13 Thread Edward Welbourne
On Monday, 13 May 2019 07:28:55 PDT Edward Welbourne wrote: >> Does anyone know why androiddeployqt links against the boot-strap >> library ? i.e. Is there any good reason not to change it to link >> against libQt5Core instead ? Thiago Macieira (13 May 2019 17:08) replied: > androiddeployqt is a

Re: [Development] Linking androiddeployqt: boot-strap library or libQt5Core

2019-05-13 Thread Thiago Macieira
On Monday, 13 May 2019 07:28:55 PDT Edward Welbourne wrote: > Does anyone know why androiddeployqt links against the boot-strap > library ? i.e. Is there any good reason not to change it to link > against libQt5Core instead ? androiddeployqt is a host tool. You don't run it on-device, but on the

[Development] Linking androiddeployqt: boot-strap library or libQt5Core

2019-05-13 Thread Edward Welbourne
Hi all, In an attempt to deprecate [0] use of QTime as a timer (in favour of QElapsedTimer, which does the job properly) I've tripped over the fact that androiddeployqt links against the boot-strap library rather than libQt5Core. The former lacks QElapsedTimer, so I can't move ahead with the depr