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

In case this helps anyone, the solution was to include the target_link_libraries CMake command. Something like:

add_library(
    drive_hw_if
    SHARED
    src/drive_hw_if.cpp
)

target_link_libraries(
    drive_hw_if
    libgpiodcxx
)

Then include the library in the package.xml with the system install command, ie libgpiod-dev.