From 2209183eac3d4c62de8fb5c8f42e4ac86e634c83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C5=BEenan=20Zuki=C4=87?= Date: Wed, 11 Mar 2026 10:05:44 -0400 Subject: [PATCH] COMP: Add missing module dependency on ITKIOImageBase Fixing compile error which occurs during wrapping: C:/Dev/ITK-vs22/Wrapping/castxml_inputs/itkScancoImageIO.cxx:1:10: fatal error: 'itkCommand.h' file not found --- itk-module.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/itk-module.cmake b/itk-module.cmake index 01f89a3..7d3efa1 100644 --- a/itk-module.cmake +++ b/itk-module.cmake @@ -10,7 +10,7 @@ file(READ "${MY_CURRENT_DIR}/README.rst" DOCUMENTATION) # define the dependencies of the include module and the tests itk_module(IOScanco - PRIVATE_DEPENDS + DEPENDS ITKIOImageBase TEST_DEPENDS ITKTestKernel