The documentation for gz_msgs_generate_messages_lib says it creates a static library:
|
# TARGET - Target (static library) to create |
But it creates a shared library:
|
add_library(${target_name} SHARED ${generated_sources} ${target_name}.gz_desc) |
Was this a mistake in the documentation? Is there a way to create it as a static library?
The documentation for
gz_msgs_generate_messages_libsays it creates a static library:gz-msgs/cmake/gz_msgs_generate.cmake
Line 197 in 135f040
But it creates a shared library:
gz-msgs/cmake/gz_msgs_generate.cmake
Line 265 in 135f040
Was this a mistake in the documentation? Is there a way to create it as a static library?