Re: [Qt-creator] Updating requirements for building Qt Creator 7+ (master branch)

2022-02-02 Thread Eike Ziller
> On 28 Jan 2022, at 19:42, Иван Комиссаров wrote: > > Hello! > > Are there any plans on updating the minimum required version of Visual studio > and a target platform on Mac? Regarding target platforms we should try to not be more restrictive than the supported target platforms of the Qt

Re: [Qt-creator] Updating requirements for building Qt Creator 7+ (master branch)

2022-01-28 Thread Иван Комиссаров
Hello! Are there any plans on updating the minimum required version of Visual studio and a target platform on Mac? Ivan > 28 янв. 2022 г., в 11:04, Eike Ziller написал(а): > > Another one: > > # Bumping the required CMake version for building Qt Creator to CMake 3.16 > and later > >

Re: [Qt-creator] Updating requirements for building Qt Creator 7+ (master branch)

2022-01-28 Thread Eike Ziller
Another one: # Bumping the required CMake version for building Qt Creator to CMake 3.16 and later Seems to be available on Ubuntu 20.04 and Debian 11 and others (https://pkgs.org/search/?q=cmake), and lets us get rid of some workarounds. Require CMake 3.16 and remove workarounds (I32500375) ·

Re: [Qt-creator] Updating requirements for building Qt Creator 7+ (master branch)

2022-01-17 Thread Eike Ziller
Yes, the plan would also be to remove the plugin support files. Generally, most of the porting work is to add a CMakeLists.txt file with some CMake preamble and qtc_add_plugin, like described in https://doc-snapshots.qt.io/qtcreator-extending/first-plugin.html#cmake-project Linking to hunspell

Re: [Qt-creator] Updating requirements for building Qt Creator 7+ (master branch)

2022-01-15 Thread Carel Combrink
Dear Eike, Thank you for the update > # Removing qmake as a build system for building Qt Creator itself > Does this also include building Plugins? Are there perhaps any guide or tips for plugin creators/mainters on how to port their existing plugins from qmake to CMake? Kind regards, Carel

[Qt-creator] Updating requirements for building Qt Creator 7+ (master branch)

2022-01-14 Thread Eike Ziller
# Bumping the required Qt version for building Qt Creator from Qt 5.14 to Qt 5.15.2. Qt 5.15.2 contains API that eases the transition to Qt 6. So far we added workarounds for Qt 5.14, that we could remove, and we then also don’t need to add more of them in new code. Regarding Linux