appveyor / ci

AppVeyor community support repository
https://www.appveyor.com
344 stars 65 forks source link

Qt6 is missing the serialport module #3761

Closed tumic0 closed 2 years ago

tumic0 commented 2 years ago

The msvc2019 64-bit build of Qt 6.2.2 is missing the serialport module. In addition to direct serial port access from the applications, it is also required by the Qt NMEA positioning plugin.

FeodorFitsner commented 2 years ago

Will add those during the next update.

In the meantime you can easily install any missing addons with the following PS script:

iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/build-images/master/scripts/Windows/install_qt_module.ps1'))
Install-QtComponent -Version "6.2.2" -Name "addons.qtserialport" -Path C:\Qt -ExcludeDocs -ExcludeExamples
Install-QtComponent -Version "6.2.2" -Name "addons.qtserialport.win64_msvc2019_64" -Path C:\Qt -ExcludeDocs -ExcludeExamples
ConfigureQtVersion C:\Qt "6.2.2"