You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
COMP: Set minimum CMAKE_CXX_STANDARD for Remote/Modules
When building remote modules outside of ITK, the
CMAKE_CXX_STANDARD must be defaulted to at least the
same standard as ITK was built against.
If not explicitly set, initialize external modules to the same standard
as ITK.
```bash
git clone https://github.com/InsightSoftwareConsortium/ITKTotalVariation.git
cd ITKTotalVariation
cmake -S . -B cmake-build-release \
-DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=ON \
-DBUILD_TESTING=ON -DITK_DIR=../ITK/build-python
ninja -C cmake-build-release
```
0 commit comments