Re: [Interest] download.qt.io is down

2021-01-18 Thread Jani Heikkinen
Hi! Thanks for heads up. Our service provider is fixing this already. br, Jani From: Interest on behalf of Dmitry Volosnykh Sent: Tuesday, January 19, 2021 3:30 AM To: interest@qt-project.org Subject: [Interest] download.qt.io is down Hi all, The htt

Re: [Interest] QPA display system query ?

2021-01-18 Thread Nicholas Yue
Thanks Thiago. On Windows and Mac, there are corresponding windeployqt and macdeployqt On *nixes, there is linuxdeployqt but that didn't work for me as it requires very specific glibc, the author of linxudeployqt have their legitimate reason for being very specific about runtime for their tool to

Re: [Interest] How to use Qt6::qmake ?

2021-01-18 Thread Nicholas Yue
Thanks Marius for gist, I am afraid it is unlikely to work out for me as it still refers to QT_QMAKE_TARGET which is set to Qt6::qmake In the cmake files ship with *Qt5* I see this (in Qt5CoreConfigExtras.cmake) if (NOT TARGET Qt5::qmake) add_executable(Qt5::qmake IMPORTED) set(imported_

Re: [Interest] QPA display system query ?

2021-01-18 Thread Thiago Macieira
On Monday, 18 January 2021 16:15:23 PST Giuseppe D'Angelo via Interest wrote: > Hi, > > Il 19/01/21 00:33, Nicholas Yue ha scritto: > > Is there some command line query I can make to determine the QPA display > > system that is being used? For example, running that command on e.g. an > > Ubuntu bo

Re: [Interest] QPA display system query ?

2021-01-18 Thread Thiago Macieira
On Monday, 18 January 2021 16:55:44 PST Nicholas Yue wrote: > Thanks for your reply Giuseppe. > > I will extract the "xcb" from the output of qtdiag. Don't do that. The output of qtdiag is not guaranteed to be stable. It may change at any time and your parser will break.fff Maybe you can tell u

[Interest] download.qt.io is down

2021-01-18 Thread Dmitry Volosnykh
Hi all, The https://download.qt.io web site is unresponsive. Dmitry. ___ Interest mailing list Interest@qt-project.org https://lists.qt-project.org/listinfo/interest

Re: [Interest] QPA display system query ?

2021-01-18 Thread Nicholas Yue
Thanks for your reply Giuseppe. I will extract the "xcb" from the output of qtdiag. Cheers On Mon, 18 Jan 2021 at 16:18, Giuseppe D'Angelo via Interest < interest@qt-project.org> wrote: > Hi, > > Il 19/01/21 00:33, Nicholas Yue ha scritto: > > Is there some command line query I can make to dete

Re: [Interest] QPA display system query ?

2021-01-18 Thread Giuseppe D'Angelo via Interest
Hi, Il 19/01/21 00:33, Nicholas Yue ha scritto: Is there some command line query I can make to determine the QPA display system that is being used? For example, running that command on e.g. an Ubuntu box may return something like *xcb* In general, qtdiag will tell you. However, this decision

[Interest] QPA display system query ?

2021-01-18 Thread Nicholas Yue
Hi, Is there some command line query I can make to determine the QPA display system that is being used? For example, running that command on e.g. an Ubuntu box may return something like *xcb* Cheers -- Nicholas Yue Graphics - Arnold, Alembic, RenderMan, OpenGL, HDF5 Custom Dev - C++ porting, O

Re: [Interest] How to use Qt6::qmake ?

2021-01-18 Thread Marius Kittler
Hi, Qt's CMake modules should already make most paths available. I came up with the following approach to support Qt 5 and Qt 6: https://github.com/Martchus/ qtutilities/blob/5960c215586cf0ca777a511c6f0830c1c63ddaa8/cmake/modules/ QtLinkage.cmake#L124 It works at least for QT_INSTALL_TRANSLATION

Re: [Interest] How to use Qt6::qmake ?

2021-01-18 Thread Nicholas Yue
I would like to run it at configure time because I need to extract the relevant paths from the query command which I need as part of fixup_bundle and language processing (Linguist) cmake_minimum_required(VERSION 3.19) project(Qt6Tutorial) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTOUIC ON) find_package

Re: [Interest] How to use Qt6::qmake ?

2021-01-18 Thread Kai Köhne
Hi, execute_process is done at CMake configure time. You should be able to use Qt6::qmake target if you use add_custom_command. Regards Kai From: Interest On Behalf Of Nicholas Yue Sent: Monday, January 18, 2021 6:02 AM To: interest@qt-project.org Subject: [Interest] How to use Qt6::qmake ?