project builds
This commit is contained in:
parent
d60c337199
commit
598f597d53
3
.vscode/settings.json
vendored
3
.vscode/settings.json
vendored
@ -87,5 +87,6 @@
|
|||||||
],
|
],
|
||||||
"python.analysis.extraPaths": [
|
"python.analysis.extraPaths": [
|
||||||
"/opt/ros/foxy/lib/python3.8/site-packages"
|
"/opt/ros/foxy/lib/python3.8/site-packages"
|
||||||
]
|
],
|
||||||
|
"ros.distro": "humble"
|
||||||
}
|
}
|
@ -11,6 +11,7 @@ RUN apt-get update && \
|
|||||||
|
|
||||||
COPY ./src/AriaCoda /usr/local/Aria
|
COPY ./src/AriaCoda /usr/local/Aria
|
||||||
RUN cd /usr/local/Aria && make -j$(nproc)
|
RUN cd /usr/local/Aria && make -j$(nproc)
|
||||||
|
ENV LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/Aria/lib
|
||||||
|
|
||||||
RUN echo "source /opt/ros/$ROS_DISTRO/setup.bash" >> ~/.bashrc
|
RUN echo "source /opt/ros/$ROS_DISTRO/setup.bash" >> ~/.bashrc
|
||||||
COPY ros_entrypoint.sh /
|
COPY ros_entrypoint.sh /
|
||||||
|
5
compose.ros2aria.yaml
Normal file
5
compose.ros2aria.yaml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
version: "3"
|
||||||
|
services:
|
||||||
|
ros2aria:
|
||||||
|
build: .
|
||||||
|
command: ros2 run ros2aria ros2aria
|
@ -26,9 +26,6 @@ find_package(tf2 REQUIRED)
|
|||||||
find_package(tf2_ros REQUIRED)
|
find_package(tf2_ros REQUIRED)
|
||||||
find_package(tf2_geometry_msgs REQUIRED)
|
find_package(tf2_geometry_msgs REQUIRED)
|
||||||
find_package(ros2aria_msgs REQUIRED)
|
find_package(ros2aria_msgs REQUIRED)
|
||||||
# uncomment the following section in order to fill in
|
|
||||||
# further dependencies manually.
|
|
||||||
# find_package(<dependency> REQUIRED)
|
|
||||||
|
|
||||||
|
|
||||||
add_executable(ros2aria
|
add_executable(ros2aria
|
||||||
@ -63,7 +60,7 @@ target_include_directories(ros2aria PUBLIC
|
|||||||
target_link_libraries(ros2aria /usr/local/Aria/lib/libAria.so)
|
target_link_libraries(ros2aria /usr/local/Aria/lib/libAria.so)
|
||||||
|
|
||||||
install(TARGETS ros2aria
|
install(TARGETS ros2aria
|
||||||
DESTINATION lib/${PROJECT_NAME})
|
DESTINATION lib/${PROJECT_NAME} )
|
||||||
|
|
||||||
if(BUILD_TESTING)
|
if(BUILD_TESTING)
|
||||||
find_package(ament_lint_auto REQUIRED)
|
find_package(ament_lint_auto REQUIRED)
|
||||||
|
Loading…
Reference in New Issue
Block a user