Skip to content

Commit 6a42031

Browse files
authored
Fix regex to match the multi-digital standalone library versions (#57)
1 parent 9c50a34 commit 6a42031

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ros2cs/ros2cs_core/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ if(STANDALONE_BUILD)
296296

297297
macro(install_standalone_dependencies)
298298
# Filter valid libraries
299-
list(FILTER REQ_STANDALONE_LIBS INCLUDE REGEX ".*(lib|dll|so)(\.[0-9])*$")
299+
list(FILTER REQ_STANDALONE_LIBS INCLUDE REGEX ".*(lib|dll|so)(\.[0-9]+)*$")
300300
list(REMOVE_DUPLICATES REQ_STANDALONE_LIBS)
301301

302302
if(WIN32)

0 commit comments

Comments
 (0)