Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions applications/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ if(NOT ITK_DIR)
set(ITK_DIR ${ITK_BINARY_DIR}/CMakeTmp)
endif()
find_package(ITK REQUIRED COMPONENTS ${ITK_MODULE_RTK_DEPENDS})
include(itkVersion)
if("${ITK_VERSION_MAJOR}" VERSION_LESS "6")
include(${ITK_USE_FILE})
endif()
Expand Down
1 change: 1 addition & 0 deletions examples/AddNoise/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ project(AddNoise)

# Find ITK with RTK
find_package(ITK REQUIRED COMPONENTS RTK)
include(itkVersion)
if("${ITK_VERSION_MAJOR}" VERSION_LESS "6")
include(${ITK_USE_FILE})
endif()
Expand Down
1 change: 1 addition & 0 deletions examples/ConjugateGradient/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ project(ConjugateGradient)

# Find ITK with RTK
find_package(ITK REQUIRED COMPONENTS RTK)
include(itkVersion)
if("${ITK_VERSION_MAJOR}" VERSION_LESS "6")
include(${ITK_USE_FILE})
endif()
Expand Down
1 change: 1 addition & 0 deletions examples/FirstReconstruction/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ project(FirstReconstruction)

# Find ITK with RTK
find_package(ITK REQUIRED COMPONENTS RTK)
include(itkVersion)
if("${ITK_VERSION_MAJOR}" VERSION_LESS "6")
include(${ITK_USE_FILE})
endif()
Expand Down
1 change: 1 addition & 0 deletions examples/GeometricPhantom/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ project(GeometricPhantom)

# Find ITK with RTK
find_package(ITK REQUIRED COMPONENTS RTK)
include(itkVersion)
if("${ITK_VERSION_MAJOR}" VERSION_LESS "6")
include(${ITK_USE_FILE})
endif()
Expand Down
1 change: 1 addition & 0 deletions examples/InlineReconstruction/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ project(InlineReconstruction)

# Find ITK with RTK
find_package(ITK REQUIRED COMPONENTS RTK)
include(itkVersion)
if("${ITK_VERSION_MAJOR}" VERSION_LESS "6")
include(${ITK_USE_FILE})
endif()
Expand Down
1 change: 1 addition & 0 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ find_package(
${ITK_MODULE_RTK_DEPENDS}
${RTK_TEST_DEPENDS}
)
include(itkVersion)
if("${ITK_VERSION_MAJOR}" VERSION_LESS "6")
include(${ITK_USE_FILE})
endif()
Expand Down
Loading