diff options
author | Martino Pilia | 2018-07-25 11:22:35 +0200 |
---|---|---|
committer | Martino Pilia | 2018-07-25 11:22:35 +0200 |
commit | f9c90064c52f257cba0a9074687c502aa425b872 (patch) | |
tree | 924b0008e1718b4793ac2a32ed67ad73b6c50139 /PKGBUILD | |
parent | e0bc3c019e84e2a649e44897eea96d1d8d855c9b (diff) | |
download | aur-f9c90064c52f257cba0a9074687c502aa425b872.tar.gz |
enable additional pixel types for 2D and 4D images
Diffstat (limited to 'PKGBUILD')
-rw-r--r-- | PKGBUILD | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,7 +1,7 @@ # Maintainer of this PKBGUILD file: Martino Pilia <martino.pilia@gmail.com> pkgname=elastix pkgver=4.9.0 -pkgrel=2 +pkgrel=3 pkgdesc='Toolbox for rigid and nonrigid registration of images' arch=('x86_64') url='http://elastix.isi.uu.nl/' @@ -26,6 +26,9 @@ prepare() { -DMAKE_CXX_FLAGS:STRING="--std=c++11" \ -DBUILD_TESTING:BOOL=OFF \ -DBUILD_SHARED_LIBS:BOOL=ON \ + -DELASTIX_IMAGE_2D_PIXELTYPES:STRING="short;float" \ + -DELASTIX_IMAGE_3D_PIXELTYPES:STRING="short;float" \ + -DELASTIX_IMAGE_4D_PIXELTYPES:STRING="short;float" \ -DELASTIX_BUILD_EXECUTABLE:BOOL=ON \ -DELASTIX_USE_ALL_COMPONENTS:BOOL=OFF \ -DELASTIX_USE_OPENCL:BOOL=OFF \ |