Skip to content

Commit 283df25

Browse files
committed
CMake: Remove RTK information
1 parent 28a7d68 commit 283df25

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

cmake/Common.cmake

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -168,12 +168,6 @@ if (HigherOrderAccurateGradient_LOADED)
168168
set(ITK_HGrad_INFO "on")
169169
list(APPEND ITK_COMPONENTS HigherOrderAccurateGradient)
170170
endif()
171-
set(ITK_RTK_INFO "off")
172-
if (RTK_LOADED)
173-
message(STATUS " RTK ${RTK_VERSION_MAJOR}.${RTK_VERSION_MINOR}.${RTK_VERSION_PATCH} available as ITK module")
174-
set(ITK_RTK_INFO "${RTK_VERSION_MAJOR}.${RTK_VERSION_MINOR}.${RTK_VERSION_PATCH}")
175-
list(APPEND ITK_COMPONENTS RTK)
176-
endif()
177171
# ITK has been found in sufficient version, otherwise above REQUIRED / FATAL_ERROR would have triggered CMake abort
178172
# Now set it up with the components we need:
179173
find_package(ITK COMPONENTS ${ITK_COMPONENTS})
@@ -236,7 +230,7 @@ if (${ITK_USE_GPU} STREQUAL "OFF")
236230
else()
237231
message(STATUS " GPU-accelerated filters (ITK_USE_GPU) enabled")
238232
endif()
239-
set(BUILD_INFO "${BUILD_INFO} \"ITK ${ITK_VERSION} (GPU: ${ITK_GPU_INFO}, SCIFIO: ${ITK_SCIFIO_INFO}, RTK: ${ITK_RTK_INFO}, HOAG: ${ITK_HGrad_INFO})\\n\"\n")
233+
set(BUILD_INFO "${BUILD_INFO} \"ITK ${ITK_VERSION} (GPU: ${ITK_GPU_INFO}, SCIFIO: ${ITK_SCIFIO_INFO}, HOAG: ${ITK_HGrad_INFO})\\n\"\n")
240234

241235
# VTK
242236
find_package(VTK REQUIRED)

0 commit comments

Comments
 (0)