Skip to content
This repository was archived by the owner on Apr 25, 2026. It is now read-only.
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
4 changes: 2 additions & 2 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ on: [push,pull_request]

jobs:
cxx-build-workflow:
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.4
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.5
with:
cmake-options: "Module_Montage_BUILD_EXAMPLES:BOOL=ON"

python-build-workflow:
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.4
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.5
with:
test-notebooks: true
secrets:
Expand Down
13 changes: 6 additions & 7 deletions examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,24 @@ else()
# lists of modules are not yet ready, causing a configure error
find_package(ITK REQUIRED COMPONENTS ${ExampleSpecificComponents})
endif()
include(${ITK_USE_FILE})

add_executable(PhaseCorrelationImageRegistration PhaseCorrelationImageRegistration.cxx)
target_link_libraries(PhaseCorrelationImageRegistration ${ITK_LIBRARIES})
target_link_libraries(PhaseCorrelationImageRegistration ${ITK_INTERFACE_LIBRARIES})

add_executable(CompleteMontage CompleteMontage.cxx)
target_link_libraries(CompleteMontage ${ITK_LIBRARIES})
target_link_libraries(CompleteMontage ${ITK_INTERFACE_LIBRARIES})

add_executable(RefineMontage RefineMontage.cxx)
target_link_libraries(RefineMontage ${ITK_LIBRARIES})
target_link_libraries(RefineMontage ${ITK_INTERFACE_LIBRARIES})

add_executable(ResampleMontage ResampleMontage.cxx)
target_link_libraries(ResampleMontage ${ITK_LIBRARIES})
target_link_libraries(ResampleMontage ${ITK_INTERFACE_LIBRARIES})

add_executable(CompareTileConfigurations CompareTileConfigurations.cxx)
target_link_libraries(CompareTileConfigurations ${ITK_LIBRARIES})
target_link_libraries(CompareTileConfigurations ${ITK_INTERFACE_LIBRARIES})

add_executable(MontageImageCompareCommand MontageImageCompareCommand.cxx)
target_link_libraries(MontageImageCompareCommand ${ITK_LIBRARIES})
target_link_libraries(MontageImageCompareCommand ${ITK_INTERFACE_LIBRARIES})


# add some regression tests
Expand Down
Loading