Can't build on Ubuntu 18.04 again

Issue #70 resolved
Former user created an issue

Getting build error towards end of process, see attachment. Not sure if missing package, or cmake config issue, or code bugs.

Comments (3)

  1. M. Gronle

    It seems that the necessary 3rd party library qscintilla is not correctly linked to your project. All missing references belong to methods from the qscintilla library. Please make sure, that you have the qscintilla package installed. If you use qt5, the command looks like this:

    sudo apt-get install libqt5scintilla2-dev

    which will also install the main libqt5scintilla2 package. Then, make sure that the QSCINTILLA_LIBRARY entry in CMake is correctly set to the qscintilla2.so file (or similar filename, use the latest version that you can locate in your lib directory) and re-generate the itom project before calling make again.

    As you can see, it is also necessary to install the -dev package of qscintilla and not only the main package.

    I hope that this hint might help. Else I have to check my linux CMake settings, which I cannot do before monday next week.

  2. Robin Hahn

    I've updated the list of dependencies in the itom documentation 447a31d. The compilation completed on our Ubuntu 18.04 test system.

  3. Log in to comment