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.
elseif
1 parent 0eddfa9 commit a8edc10Copy full SHA for a8edc10
test_communication/CMakeLists.txt
@@ -49,15 +49,10 @@ if(BUILD_TESTING)
49
# Decide category based on interface_ns
50
if(interface_ns STREQUAL "msg")
51
list(APPEND message_files "${interface_file}")
52
- continue()
53
- endif()
54
- if(interface_ns STREQUAL "srv")
+ elseif(interface_ns STREQUAL "srv")
55
list(APPEND service_files "${interface_file}")
56
57
58
- if(interface_ns STREQUAL "action")
+ elseif(interface_ns STREQUAL "action")
59
list(APPEND action_files "${interface_file}")
60
61
endif()
62
endforeach()
63
0 commit comments