We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 14bb1b9 commit 998cfb1Copy full SHA for 998cfb1
1 file changed
imu_complementary_filter/CMakeLists.txt
@@ -37,6 +37,9 @@ target_link_libraries(complementary_filter PUBLIC
37
# Causes the visibility macros to use dllexport rather than dllimport,
38
# which is appropriate when building the dll but not consuming it.
39
target_compile_definitions(complementary_filter PRIVATE "IMU_COMPLEMENTARY_FILTER_BUILDING_LIBRARY")
40
+if(WIN32 AND MSVC)
41
+ set_target_properties(complementary_filter PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON)
42
+endif()
43
44
# create complementary_filter_node executable
45
add_executable(complementary_filter_node
0 commit comments