You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am currently implementing my robot model to work with your package. I just have a minor suggestion:
When people like me try to use header files from the towr_ros package it would be convenient if you install the header files of it by changing the CMakeList of the "towr_ros" package:
include_directories(
include
${catkin_INCLUDE_DIRS}
)
# Mark header files for installation
install(
DIRECTORY include/${PROJECT_NAME}/
DESTINATION ${CATKIN_PACKAGE_INCLUDE_DESTINATION}
FILES_MATCHING PATTERN "*.h"
)
Then people, who download your software and try stuff out don't have to face issues when compiling because of header files, which weren't found :)
The text was updated successfully, but these errors were encountered:
Hello guys,
I am currently implementing my robot model to work with your package. I just have a minor suggestion:
When people like me try to use header files from the towr_ros package it would be convenient if you install the header files of it by changing the CMakeList of the "towr_ros" package:
Then people, who download your software and try stuff out don't have to face issues when compiling because of header files, which weren't found :)
The text was updated successfully, but these errors were encountered: