CANdevStudio icon indicating copy to clipboard operation
CANdevStudio copied to clipboard

Installation problem

Open dianaa20-t opened this issue 4 years ago • 3 comments

CMake

How could i find the messing modules? Regards,

dianaa20-t avatar Apr 21 '21 12:04 dianaa20-t

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

rkollataj avatar Apr 21 '21 15:04 rkollataj

It doesn't work.

dianaa20-t avatar Apr 22 '21 17:04 dianaa20-t

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: image

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.

sisco0 avatar Oct 01 '21 23:10 sisco0