QT 5.12.12: Unknown module(s) in QT: serialPort
-
Hello,
I am currently building a program using QT5.12.12+msvc2017 on a windows machine. On my computer and at least one of my colleague, it compiles fine. On our Jenkins server, it does fail. It complains with "Unknown module(s) in QT: serialPort".
On the Jenkins computer QT5.12.12 was installed using qt-opensource-windows-x86-5.12.12.exe. I can find Qt5SerialPort.lib under C:\5.12.12\lib and Qt5SerialPort.dll under C:\5.12.12\bin.Any idea ?
-
Hi and welcome to devnet,
Do you have a typo here ? It's serialport all lower case.
-
@SGaist
How can I thank you ? It does work with :greaterThan(QT_MAJOR_VERSION, 4) {
QT += serialport
}The strange thing is why it was working with serialPort on my computer :). But it does not really matter.
Again, thank you.!
Best regards,
Jean-Pierre
-
J Jean-Pierre Gervasoni has marked this topic as solved on
-
@SGaist
How can I thank you ? It does work with :greaterThan(QT_MAJOR_VERSION, 4) {
QT += serialport
}The strange thing is why it was working with serialPort on my computer :). But it does not really matter.
Again, thank you.!
Best regards,
Jean-Pierre
@Jean-Pierre-Gervasoni said in QT 5.12.12: Unknown module(s) in QT: serialPort:
@SGaist
How can I thank you ? It does work with :Well, you did it in this message :-)
Happy coding !
-
S SGaist has marked this topic as solved on