Skip to content

Commit 8b6277d

Browse files
authored
Merge pull request #6398 from SimonRit/orphaned_remote
BUG: Fix check for orphaned remote modules
2 parents 3274f30 + 1b48461 commit 8b6277d

1 file changed

Lines changed: 14 additions & 1 deletion

File tree

CMake/itkCheckForOrphanedRemoteModules.cmake

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,20 @@ function(itk_check_for_orphaned_remote_modules)
1212
continue()
1313
endif()
1414
get_filename_component(_name "${_entry}" NAME)
15-
if(_name STREQUAL "Deprecated")
15+
string(REGEX REPLACE "^ITK" "" _name "${_name}")
16+
if(
17+
_name
18+
STREQUAL
19+
"Deprecated"
20+
OR
21+
_name
22+
STREQUAL
23+
"ITK-Wasm"
24+
OR
25+
_name
26+
STREQUAL
27+
"scifio-imageio"
28+
)
1629
continue()
1730
endif()
1831
if(

0 commit comments

Comments
 (0)