Hi All,
I'm not sure if this is posted in the correct location. OP please move if not.
Maybe someone with QT knowledge could help me out. I am attempting to build a Amateur Radio QT application called DroidStar on FreeBSD 13.0. The code is C++ and it builds fine until it reaches this header. Does anyone know where this header and lib is? I have pkg install qt5-serialport so that package is installed but it doesn't seem to have the library header that the code is requesting. This code was built on Linux but I am wanting to port it to FreeBSD however I need to just do a normal build before I attempt a port. Below is the error I am seeing. It seems like it would be a simple fix if I could find the header and lib that it's wanting.
This code was built on Linux but I am wanting to port it to FreeBSD however I need to just do a normal build before I attempt a port.
The source can be found at https://github.com/nostar/DroidStar
I'm not sure if this is posted in the correct location. OP please move if not.
Maybe someone with QT knowledge could help me out. I am attempting to build a Amateur Radio QT application called DroidStar on FreeBSD 13.0. The code is C++ and it builds fine until it reaches this header. Does anyone know where this header and lib is? I have pkg install qt5-serialport so that package is installed but it doesn't seem to have the library header that the code is requesting. This code was built on Linux but I am wanting to port it to FreeBSD however I need to just do a normal build before I attempt a port. Below is the error I am seeing. It seems like it would be a simple fix if I could find the header and lib that it's wanting.
This code was built on Linux but I am wanting to port it to FreeBSD however I need to just do a normal build before I attempt a port.
C++:
../../DroidStar/serialambe.h:22:10: fatal error: 'QSerialPort' file not found
#include <QSerialPort>
^~~~~~~~~~~~~
1 error generated.
*** Error code 1
The source can be found at https://github.com/nostar/DroidStar