ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

Hello, I solved this problem by myself.

I remove the EXACT option on CMakeList.txt placed on each packages. like

Before

...
  find_package(Qt5 ${rviz_QT_VERSION} EXACT REQUIRED Core Widgets)
...

After

...
  find_package(Qt5 ${rviz_QT_VERSION} REQUIRED Core Widgets)
...

The point of those is that you need to do every package which have same error.

EDITED

NOTICE by @gvdhoorn

The EXACT argument is there to avoid incompatibilities between the version of Qt5 being linked by the tutorial package and the packages that it depends on (ie: RViz). If you don't use the same version, there is a risk of running into ABI incompatibilities, which are hard to diagnose.


Hello, I solved this problem by myself.

I remove the EXACT option on CMakeList.txt placed on each packages. like

Before

...
  find_package(Qt5 ${rviz_QT_VERSION} EXACT REQUIRED Core Widgets)
...

After

...
  find_package(Qt5 ${rviz_QT_VERSION} REQUIRED Core Widgets)
...

The point of those is that you need to do every package which have same error.