We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad7739f commit d86b9d7Copy full SHA for d86b9d7
gripper_controllers/CMakeLists.txt
@@ -1,10 +1,9 @@
1
cmake_minimum_required(VERSION 3.16)
2
project(gripper_controllers)
3
4
-if(APPLE OR WIN32)
5
- message(WARNING "gripper controllers are not available on OSX or Windows")
6
- return()
7
-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)
8
9
if(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|Clang)")
10
add_compile_options(-Wall -Wextra -Wpedantic -Werror=conversion -Werror=unused-but-set-variable
0 commit comments