Skip to content
Snippets Groups Projects
Commit 4d827f67 authored by Joan Vallvé Navarro's avatar Joan Vallvé Navarro
Browse files

Merge branch 'devel' into 'main'

Devel

See merge request !6
parents f3e7ca94 9ef55faa
No related branches found
No related tags found
1 merge request!6Devel
workflow:
rules:
- if: '$CI_PIPELINE_SOURCE == "web"'
- if: $CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS && $CI_PIPELINE_SOURCE == "push"
when: never
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
- if: '$CI_COMMIT_BRANCH && $CI_OPEN_MERGE_REQUESTS'
when: never
- if: '$CI_COMMIT_BRANCH'
stages:
- license
- build_and_test
......@@ -10,7 +20,6 @@ stages:
- echo $WOLF_IMU_BRANCH
- echo $WOLF_ROS_NODE_BRANCH
- echo $CI_COMMIT_BRANCH
- echo $WOLF_ROS_IMU_BRANCH
.preliminaries_template: &preliminaries_definition
## Install ssh-agent if not already installed, it is required by Docker.
......@@ -79,8 +88,7 @@ stages:
- if [ -d wolf ]; then
- echo "directory wolf exists"
- cd wolf
- git checkout devel
- git pull
- git fetch --all
- git checkout $WOLF_CORE_BRANCH
- git pull
- else
......@@ -98,8 +106,7 @@ stages:
- if [ -d imu ]; then
- echo "directory imu exists"
- cd imu
- git checkout devel
- git pull
- git fetch --all
- git checkout $WOLF_IMU_BRANCH
- git pull
- else
......
......@@ -4,7 +4,7 @@ project(wolf_ros_imu)
## Compile as C++14
add_compile_options(-std=c++14)
# -fPIC and -rdynamic ensure unique singleton instance across shared libraries (for factories) see: https://stackoverflow.com/a/8626922
SET(CMAKE_CXX_FLAGS "-fPIC -rdynamic")
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -rdynamic")
## Find catkin macros and libraries
## if COMPONENTS list like find_package(catkin REQUIRED COMPONENTS xyz)
......@@ -52,11 +52,13 @@ add_library(publisher_${PROJECT_NAME}
target_link_libraries(subscriber_${PROJECT_NAME}
wolfcore
wolfimu
${catkin_LIBRARIES}
${sensor_msgs_LIBRARIES}
)
target_link_libraries(publisher_${PROJECT_NAME}
wolfcore
wolfimu
${catkin_LIBRARIES}
${sensor_msgs_LIBRARIES}
)
\ No newline at end of file
......@@ -2,7 +2,7 @@
<package format="2">
<name>wolf_ros_imu</name>
<version>0.0.0</version>
<description>The wolf_ros package of GAUSS project</description>
<description>The wolf_ros package of WOLF project</description>
<!-- One maintainer tag required, multiple allowed, one person per tag -->
<!-- Example: -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment