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
We need to add one line to the top-level CMakeLists.txt of iris_lama to build the package.
# install location of generated cmake config filesset(ConfigPackageLocation ${CMAKE_INSTALL_LIBDIR}/${CMAKE_PROJECT_NAME}/cmake)
# dependenciesfind_package(Eigen3 3.3 REQUIREDNO_MODULE)
# ##set(CMAKE_POSITION_INDEPENDENT_CODE ON) # We need to add this !# ### the codeadd_subdirectory(src)
# header files, note the "/" after includeinstall(DIRECTORY include/
DESTINATION${CMAKE_INSTALL_INCLUDEDIR})
The text was updated successfully, but these errors were encountered:
Overview
In ROS 2, it is recommended that we write a node like a nodelet of ROS 1. Please refer to https://docs.ros.org/en/jazzy/Concepts/Intermediate/About-Composition.html .
I am ready to commit necessary changes for this suggestion.
Target branch
eloquent-devel
Note
We need to add one line to the top-level CMakeLists.txt of iris_lama to build the package.
The text was updated successfully, but these errors were encountered: