Skip to content
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: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion include/itkVkDiscreteGaussianImageFilter.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ VkDiscreteGaussianImageFilter<TInputImage, TOutputImage>::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);
}
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down Expand Up @@ -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``.
Expand Down
Loading