GitHub actions and QtMQTT
-
Hello,
I am trying to set up a GitHub action for deploying a simple application made with Qt6.5.1 on Windows. The repo is on https://hithub.com/pbosetti/machine_sim.
The application needs QtMQTT module. There is an action (jurplel/install-qt-action@v3) which allows to setup the Qt environment and add some modules, as qtcharts and qtwebsockets, but unfortunately it is not providing QtMQTT.
So I thought to add some steps for cloning the repo GitHub.com/qt/qtmqtt and building it with Cmake/VS2019.
Unfortunately, that does not work. In particular, the Cmake install step fails, because the library generated by Cmake build is named Qt6Mqttd.dll (with debug info, note the trailing 'd'!), while the install steps searches for a Qt6Mqtt.dll (no 'd').
I cannot find a way for telling Cmake ad Release (only Debug and RelWithDebInfo are available targets).
Anyone here having experience in this?
Thanks,
Paolo