CANdevStudio
CANdevStudio copied to clipboard
Installation problem
How could i find the messing modules? Regards,
Looks like a problem with Qt libraries that comes with Ubuntu installation. Try to install full Qt framework on your own using: https://download.qt.io/archive/qt/. Then point CMake to installation path using CMAKE_PREFIX_PATH e.g.
cmake .. -DCMAKE_PREFIX_PATH=/home/genivi/Qt5.8.0/5.8/gcc_64
It doesn't work.
You should install the libqt5serialbus5-dev package for fixing that dependency. Just use the next command:
sudo apt install libqt5serialbus5-dev -y
How do I know
If you are in doubt of some other file then you should install apt-file by invoking the next command:
sudo apt install apt-file -y
After installing apt-file you must update its database, so just type:
sudo apt-file update
Then, you could search for files in packages by executing a search:
sudo apt-file search Qt5SerialBusConfig
You should obtain some result like mine:

That means that the *.cmake file that your build system is looking for is included in that package, so, to fix it you just install the libqt5serialbus5-dev package.