Yesterday I upgraded Ubuntu to 24.04.2 LTS and downloaded latest sourcecode foor pythonscad.
cd pythonscad
mkdir build
cd build
cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 -DENABLE_LIBFIVE=1 ..
make
Compilation starts. After 27% :
make[2]: *** No rule to make target '/usr/lib/libqscintilla2_qt5.so', needed by 'pythonscad'. Stop.
make[1]: *** [CMakeFiles/Makefile2:349: CMakeFiles/OpenSCAD.dir/all] Error 2
There is a libqscintilla2_qt5.so present at /usr/lib/x86_64-linux-gnu/libqscintilla2_qt5.so
I tried already:
cmake -DEXPERIMENTAL=1 -DENABLE_PYTHON=1 -DENABLE_LIBFIVE=1 .. -DCMAKE_LIBRARY_PATH=/usr/lib/x86_64-linux-gnu
That didn't help.
On the previous ubuntu versions this all went weel.,
Any hints how to solve this are appreciated.