thirtythreeforty / bullycpp

A Bully Bootloader PC driver program
GNU General Public License v3.0
12 stars 6 forks source link

trouble building in linux: Unknown module(s) in QT: serialport #29

Closed Ploux closed 3 years ago

Ploux commented 3 years ago

running linux mint 20:

~/bullycpp/src$ qmake bullycpp.pro
Info: creating stash file /home/ruin/bullycpp/src/.qmake.stash
Project ERROR: Unknown module(s) in QT: serialport
thirtythreeforty commented 3 years ago

Looks like you're missing the development headers for Qt Serialport:

sudo apt install libqt5serialport5-dev
Ploux commented 3 years ago

That did the trick. Thanks!