COMP: Fix missing header itkImageRegionConstIterator.h#59
Closed
hjmjohnson wants to merge 0 commit intomainfrom
Closed
COMP: Fix missing header itkImageRegionConstIterator.h#59hjmjohnson wants to merge 0 commit intomainfrom
hjmjohnson wants to merge 0 commit intomainfrom
Conversation
Member
Author
|
@thewtex FYI: The following script is being used to ensure python wrapping of remote modules on mac before attempting on windows. #!/bin/bash
ITK_REFERENCE_DIR=/Users/johnsonhj/Dashboard/src/ITK
pushd ${ITK_REFERENCE_DIR}
# pixi shell --environment python
pixi run build-python
popd
ls /Users/johnsonhj/Dashboard/src/ITK/Modules/Remote/*remote.cmake
for remote_cmake in $(ls ${ITK_REFERENCE_DIR}/Modules/Remote/*remote.cmake); do
remote_package=$(basename ${remote_cmake} | sed 's/.remote.cmake//g')
MODULE_COMPLIANCE_LEVEL=$(grep MODULE_COMPLIANCE_LEVEL ${remote_cmake} |sed 's/MODULE_COMPLIANCE_LEVEL *\([^ ]*\)/\1/g')
GIT_REPOSITORY=$(grep GIT_REPOSITORY ${remote_cmake} |sed 's/GIT_REPOSITORY *\([^ ]*\)/\1/g')
GIT_PRIMARY_BRANCH=$(git symbolic-ref --short refs/remotes/origin/HEAD 2>/dev/null | sed 's|^origin/||')
GIT_TAG=$(grep GIT_TAG ${remote_cmake} |sed 's/GIT_TAG *\([^ ]*\)/\1/g')
echo "============================ ${remote_package} ============"
echo "Using: ${GIT_REPOSITORY} at ${GIT_TAG}"
sleep 3
if [ ! -d ${remote_package} ]; then
git clone ${GIT_REPOSITORY} ${remote_package}
fi
pushd ${remote_package}
git fetch
# git checkout ${GIT_TAG}
git checkout ${GIT_GIT_PRIMARY_BRANCH}
cmake -S . -B cmake-build-release -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON -DBUILD_TESTING=ON -DITK_DIR=/Users/johnsonhj/Dashboard/src/ITK/build-python
ninja -C cmake-build-release
popd
done |
71edfdf to
4dc0acd
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
BoneMorphometry/include/itkReplaceFeatureMapNanInfImageFilter.h:81:34:
error: no template named 'ImageRegionConstIterator' in namespace 'itk'