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

Hi,
I finally found the core of the problem: During the make-process the CXX-Flag "-DDISABLE_LIBUSB-1.0" will be set in the file "flags.make". This flag has a bad name as it consists of a "-" Symbol. The file itself was created during the cmake-process based on the added definitions.

The solution was to remove the bad named macro within the "CMakeLists.txt" file be adding
remove_definitions(-DDISABLE_LIBUSB-1.0)

See also link text

Greetings Peter