Skip to content

Commit

Permalink
Remove visibility boilerplate code (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
christophfroehlich authored Jan 1, 2025
1 parent 6e2eaf9 commit e9dd04a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 49 deletions.
4 changes: 4 additions & 0 deletions kinematics_interface/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()

# using this instead of visibility macros
# S1 from https://github.com/ros-controls/ros2_controllers/issues/1053
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)

set(THIS_PACKAGE_INCLUDE_DEPENDS
rclcpp
rclcpp_lifecycle
Expand Down

This file was deleted.

4 changes: 4 additions & 0 deletions kinematics_interface_kdl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ if(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)")
add_compile_options(-Wall -Wextra -Wpedantic)
endif()

# using this instead of visibility macros
# S1 from https://github.com/ros-controls/ros2_controllers/issues/1053
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)

set(THIS_PACKAGE_INCLUDE_DEPENDS
kdl_parser
kinematics_interface
Expand Down

0 comments on commit e9dd04a

Please sign in to comment.