I build kicad from source using the following:
sudo cmake -DKICAD_USE_CMAKE_FINDPROTOBUF=ON ../../
sudo make
sudo make install
sudo ldconfig
and when running kicad from:
'/usr/local/kicad/build/release/kicad/kicad`
and trying to open an eeschema file i get the following:
Failed to load shared library '/usr/local/kicad/build/release/kicad/_eeschema.kiface': /usr/local/kicad/build/release/kicad/_eeschema.kiface: cannot open shared object file: No such file or directory
but _eeschema.kiface
is located in: “/usr/local/kicad/build/release/eeschema/_eeschema.kiface”
thus it is looking for it in the wrong directory same story with pcbnew,
but i am able to open eechema with bash command:
/usr/local/kicad/build/release/eeschema/eeschema
so individually this was built correctly.
Any idea how to rectify that?