RoboCup-SSL / ssl-vision

Shared Vision System For The RoboCup Small Size League
GNU General Public License v3.0
88 stars 109 forks source link

Basler: Fix compilation #212

Closed emielsteerneman closed 1 year ago

emielsteerneman commented 1 year ago

In the file cmake/FindPYLON.cmake , line 64

file(GLOB PYLON_LIBRARIES ${PYLON_LIBRARY_DIR}lib*.so)

should be replaced with

file(GLOB PYLON_LIBRARIES ${PYLON_LIBRARY_DIR}/lib*.so ${PYLON_LIBRARY_DIR}/Qt/lib/lib*.so)

This is to ensure that CMake can find all .so files such as libQt5Multimedia.so.5 that might not be installed on the system

emielsteerneman commented 1 year ago

It turned out to be something else. This is not a fix after all