Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[docker/VM] use libinsighttoolkit5-dev as opposed to building ITK #886

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
- CPU: ubuntu:22.04
- GPU: nvidia/cuda:11.7.1-cudnn8-runtime-ubuntu22.04
- added requirements.yml
- use libinsighttoolkit5-dev as opposed to building ITK ourselves
- Drop Travis
- updated versions:
- SIRF: v3.6.0
Expand All @@ -27,6 +28,7 @@
- VM changes
- UPDATE.sh (and hence update_VM.sh) has extra developer options to set the
DEVEL_BUILD=ON (-D) and skip the build (-S).
- use libinsighttoolkit5-dev as opposed to building ITK ourselves

## v3.5.0
- Temporarily disable CCPi-Regularisation due to #832
Expand Down
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ ARG USE_SYSTEM_Boost="ON"
ARG USE_SYSTEM_FFTW3="ON"
ARG USE_SYSTEM_HDF5="ON"
ARG USE_ITK="ON"
ARG USE_SYSTEM_ITK="ON"
ARG USE_SYSTEM_SWIG="ON"
ARG USE_NiftyPET="OFF"
ARG BUILD_siemens_to_ismrmrd="ON"
Expand All @@ -80,6 +81,7 @@ RUN BUILD_FLAGS="-G Ninja\
-DUSE_SYSTEM_FFTW3=${USE_SYSTEM_FFTW3}\
-DUSE_SYSTEM_HDF5=${USE_SYSTEM_HDF5}\
-DUSE_ITK=${USE_ITK}\
-DUSE_SYSTEM_ITK=${USE_SYSTEM_ITK}\
-DUSE_SYSTEM_SWIG=${USE_SYSTEM_SWIG}\
-DUSE_NiftyPET=${USE_NiftyPET}\
-DBUILD_siemens_to_ismrmrd=${BUILD_siemens_to_ismrmrd}\
Expand Down
1 change: 1 addition & 0 deletions VirtualBox/scripts/UPDATE_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ SuperBuild_install(){
-DUSE_SYSTEM_HDF5=ON \
-DBUILD_siemens_to_ismrmrd=On \
-DUSE_ITK=ON \
-DUSE_SYSTEM_ITK=ON \
-DDEVEL_BUILD="$DEVEL_BUILD" \
-DNIFTYREG_USE_CUDA=OFF\
-DBUILD_CIL=ON\
Expand Down
1 change: 1 addition & 0 deletions docker/build_system-ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ ${APT_GET_INSTALL} \
libfftw3-dev \
libhdf5-serial-dev \
hdf5-helpers \
libinsighttoolkit5-dev \
swig

# doxygen related packages
Expand Down
Loading