diff --git a/CMakeLists.txt b/CMakeLists.txt index 8c73748..2b1db1b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,8 @@ cmake_minimum_required(VERSION 3.16.3) project(VkFFTBackend) -set(CMAKE_CXX_STANDARD 14) +if(NOT CMAKE_CXX_STANDARD) + set(CMAKE_CXX_STANDARD 14) +endif() set(CMAKE_CXX_STANDARD_REQUIRED True) set(VkFFTBackend_LIBRARIES VkFFTBackend) diff --git a/include/itkVkDiscreteGaussianImageFilter.hxx b/include/itkVkDiscreteGaussianImageFilter.hxx index fd70f80..2322650 100644 --- a/include/itkVkDiscreteGaussianImageFilter.hxx +++ b/include/itkVkDiscreteGaussianImageFilter.hxx @@ -42,7 +42,7 @@ VkDiscreteGaussianImageFilter::GenerateInputRequested bool wasPartiallyInside = inputRegion.Crop(inputPtr->GetLargestPossibleRegion()); if (!wasPartiallyInside) { - itkExceptionMacro("Requested region is outside the largest possible region.") + itkExceptionMacro("Requested region is outside the largest possible region."); } inputPtr->SetRequestedRegion(inputRegion); } diff --git a/pyproject.toml b/pyproject.toml index 6465f6e..2be42bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "scikit_build_core.build" [project] name = "itk-vkfft" -version = "1.0.1" +version = "1.0.2" description = "VkFFT backends for ITK FFT classes." readme = "README.rst" license = {file = "LICENSE"} @@ -47,7 +47,7 @@ Homepage = "https://github.com/InsightSoftwareConsortium/ITKVkFFTBackend" # The versions of CMake to allow. If CMake is not present on the system or does # not pass this specifier, it will be downloaded via PyPI if possible. An empty # string will disable this check. -cmake.version = ">=3.16.3" +cmake.version = ">=3.22.1" # A list of args to pass to CMake when configuring the project. Setting this in # config or envvar will override toml. See also ``cmake.define``.