Skip to content

Commit e008513

Browse files
committed
Merge pull request #41 from jcfr/40-relax-itk-requirements
Relax ITK version requirements. See #40
2 parents b31b424 + e90eb64 commit e008513

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

GenerateCLP/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ include(${TCLAP_USE_FILE})
4141
set(${PROJECT_NAME}_ITK_COMPONENTS
4242
${ModuleDescriptionParser_ITK_COMPONENTS}
4343
)
44-
find_package(ITK 4.5 COMPONENTS ${${PROJECT_NAME}_ITK_COMPONENTS} REQUIRED)
44+
find_package(ITK 4.3 COMPONENTS ${${PROJECT_NAME}_ITK_COMPONENTS} REQUIRED)
4545
set(ITK_NO_IO_FACTORY_REGISTER_MANAGER 1) # See Slicer/Libs/ITKFactoryRegistration/CMakeLists.txt
4646
include(${ITK_USE_FILE})
4747

GenerateCLP/UseGenerateCLP.cmake.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ include(${ModuleDescriptionParser_USE_FILE})
1717
set(${PROJECT_NAME}_ITK_COMPONENTS
1818
${ModuleDescriptionParser_ITK_COMPONENTS}
1919
)
20-
find_package(ITK 4.5 COMPONENTS ${${PROJECT_NAME}_ITK_COMPONENTS} REQUIRED)
20+
find_package(ITK 4.3 COMPONENTS ${${PROJECT_NAME}_ITK_COMPONENTS} REQUIRED)
2121
# Allow other projects to specify a different list of COMPONENTS
2222
set(ITK_FOUND FALSE)
2323

ModuleDescriptionParser/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ set(${PROJECT_NAME}_ITK_COMPONENTS
3737
ITKCommon# For itksys
3838
ITKIOXML # For ITKEXPAT
3939
)
40-
find_package(ITK 4.5 COMPONENTS ${${PROJECT_NAME}_ITK_COMPONENTS} REQUIRED)
40+
find_package(ITK 4.3 COMPONENTS ${${PROJECT_NAME}_ITK_COMPONENTS} REQUIRED)
4141
include(${ITK_USE_FILE})
4242

4343
#

0 commit comments

Comments
 (0)