Skip to content

Commit cb52ee2

Browse files
committed
COMP: Bump ITK to 6.0 Beta 2
Includes ITK CMake target configuration updates.
1 parent 71baa24 commit cb52ee2

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

ITKSoftwareGuide.cmake

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ find_package(ITK ${MINIMUM_ITK_VERSION} REQUIRED)
1616
if(Slicer_BUILD_${PROJECT_NAME})
1717
set(ITK_NO_IO_FACTORY_REGISTER_MANAGER 1) # Incorporate with Slicer nicely
1818
endif()
19-
include(${ITK_USE_FILE})
2019

2120
if( NOT IS_DIRECTORY "${ITK_SOURCE_DIR}" )
2221
message(FATAL_ERROR "ITK source directory is not set :${ITK_SOURCE_DIR}:")

SoftwareGuide/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ project(SoftwareGuide C)
3232
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/CMake ${CMAKE_MODULE_PATH})
3333

3434
find_package(ITK 5 REQUIRED)
35-
include(${ITK_USE_FILE})
3635

3736
set(PDF_QUALITY_LEVEL "Screen" CACHE STRING "PDF Quality. Options are: Screen, Printer, PrePress")
3837
#

SoftwareGuide/Cover/Source/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.10.2 FATAL_ERROR)
22
cmake_policy(VERSION 3.10.2)
3-
3+
44
project( VWSegmentation )
55

66
find_package( ITK 5 REQUIRED )
@@ -23,5 +23,5 @@ set( operations
2323

2424
foreach( operation ${operations} )
2525
add_executable( ${operation} ${operation}.cxx )
26-
target_link_libraries( ${operation} ${ITK_LIBRARIES} )
26+
target_link_libraries( ${operation} ${ITK_INTERFACE_LIBRARIES} )
2727
endforeach()

SuperBuild/External_ITK.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,8 +104,8 @@ if(NOT ( DEFINED "${extProjName}_DIR" OR ( DEFINED "USE_SYSTEM_${extProjName}" A
104104
### --- End Project specific additions
105105
set(${proj}_REPOSITORY ${git_protocol}://github.com/InsightSoftwareConsortium/ITK.git)
106106
if("${${proj}_GIT_TAG}" STREQUAL "")
107-
# ITK main branch 2025-09-24
108-
set(${proj}_GIT_TAG "v6.0b01")
107+
# ITK release branch 2026-02-25
108+
set(${proj}_GIT_TAG "v6.0b02")
109109
endif()
110110

111111
ExternalProject_Add(${proj}

0 commit comments

Comments
 (0)