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

missing implementation of std::ostream & operator<<(std::ostream & out, const RecursiveGaussianImageFilterEnums::GaussianOrder value) #1890

Closed
chacha21 opened this issue Jun 23, 2020 · 12 comments
Labels
type:Bug Inconsistencies or issues which will cause an incorrect result under some or all circumstances

Comments

@chacha21
Copy link
Contributor

ITK 5.1
It seems that
std::ostream & operator<<(std::ostream & out, const RecursiveGaussianImageFilterEnums::GaussianOrder value)

is not implemented and I have link error when using itkMultiResolutionPDEDeformableRegistration

adding

namespace itk {
std::ostream & operator<<(std::ostream & out, const RecursiveGaussianImageFilterEnums::GaussianOrder value) {return out;}
}

in any compilation unit will fix it (until a real implementation is given)

@chacha21 chacha21 added the type:Bug Inconsistencies or issues which will cause an incorrect result under some or all circumstances label Jun 23, 2020
@dzenanz
Copy link
Member

dzenanz commented Jun 23, 2020

Is this simply trying to compile ITK or is this an error in your project when you try using ITK? Which CMake configuration options are you using?

@chacha21
Copy link
Contributor Author

chacha21 commented Jun 23, 2020

ITK compiles fine, the problem occurs in a project of mine, under Visual Studio 2019 (x64 build)
The only CMake option I customized are:
enabling "BUILD_SHARED_LIBS"
enabling "ITK_USE_GPU" (automatically selecting my Cuda 10.2 install)

# This is the CMakeCache file.
# For build in directory: e:/InsightToolkit-5.1.0/build/vs2019/x64
# It was generated by CMake: C:/Program Files/CMake/bin/cmake.exe
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.

########################
# EXTERNAL cache entries
########################

//Build the examples from the ITK Software Guide.
BUILD_EXAMPLES:BOOL=OFF

//Build Shared Libraries
BUILD_SHARED_LIBS:BOOL=ON

//Build HDF5 Unit Testing
BUILD_TESTING:BOOL=OFF

//Choose the type of build.
CMAKE_BUILD_TYPE:STRING=Release

//Semicolon separated list of supported configuration types, only
// supports Debug, Release, MinSizeRel, and RelWithDebInfo, anything
// else will be ignored.
CMAKE_CONFIGURATION_TYPES:STRING=Debug;Release;MinSizeRel;RelWithDebInfo

//Flags used by the CXX compiler during all build types.
CMAKE_CXX_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3 /GR /EHsc

//Flags used by the CXX compiler during DEBUG builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1

//Flags used by the CXX compiler during MINSIZEREL builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG

//Flags used by the CXX compiler during RELEASE builds.
CMAKE_CXX_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG

//Flags used by the CXX compiler during RELWITHDEBINFO builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG

//Libraries linked by default with all C++ applications.
CMAKE_CXX_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib

//Flags used by the C compiler during all build types.
CMAKE_C_FLAGS:STRING=/DWIN32 /D_WINDOWS /W3

//Flags used by the C compiler during DEBUG builds.
CMAKE_C_FLAGS_DEBUG:STRING=/MDd /Zi /Ob0 /Od /RTC1

//Flags used by the C compiler during MINSIZEREL builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=/MD /O1 /Ob1 /DNDEBUG

//Flags used by the C compiler during RELEASE builds.
CMAKE_C_FLAGS_RELEASE:STRING=/MD /O2 /Ob2 /DNDEBUG

//Flags used by the C compiler during RELWITHDEBINFO builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=/MD /Zi /O2 /Ob1 /DNDEBUG

//Libraries linked by default with all C applications.
CMAKE_C_STANDARD_LIBRARIES:STRING=kernel32.lib user32.lib gdi32.lib winspool.lib shell32.lib ole32.lib oleaut32.lib uuid.lib comdlg32.lib advapi32.lib

//Generate debug library name with a postfix.
CMAKE_DEBUG_POSTFIX:STRING=

//Flags used by the linker during all build types.
CMAKE_EXE_LINKER_FLAGS:STRING=/machine:x64

//Flags used by the linker during DEBUG builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL

//Flags used by the linker during MINSIZEREL builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO

//Flags used by the linker during RELEASE builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO

//Flags used by the linker during RELWITHDEBINFO builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL

//User executables (bin)
CMAKE_INSTALL_BINDIR:PATH=bin

//Read-only architecture-independent data (DATAROOTDIR)
CMAKE_INSTALL_DATADIR:PATH=

//Read-only architecture-independent data root (share)
CMAKE_INSTALL_DATAROOTDIR:PATH=share

//Documentation root (DATAROOTDIR/doc/PROJECT_NAME)
CMAKE_INSTALL_DOCDIR:PATH=

//C header files (include)
CMAKE_INSTALL_INCLUDEDIR:PATH=include

//Info documentation (DATAROOTDIR/info)
CMAKE_INSTALL_INFODIR:PATH=

//Object code libraries (lib)
CMAKE_INSTALL_LIBDIR:PATH=lib

//Program executables (libexec)
CMAKE_INSTALL_LIBEXECDIR:PATH=libexec

//Locale-dependent data (DATAROOTDIR/locale)
CMAKE_INSTALL_LOCALEDIR:PATH=

//Modifiable single-machine data (var)
CMAKE_INSTALL_LOCALSTATEDIR:PATH=var

//Man documentation (DATAROOTDIR/man)
CMAKE_INSTALL_MANDIR:PATH=

//C header files for non-gcc (/usr/include)
CMAKE_INSTALL_OLDINCLUDEDIR:PATH=/usr/include

//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=C:/Program Files (x86)/ITK

//Run-time variable data (LOCALSTATEDIR/run)
CMAKE_INSTALL_RUNSTATEDIR:PATH=

//System admin executables (sbin)
CMAKE_INSTALL_SBINDIR:PATH=sbin

//Modifiable architecture-independent data (com)
CMAKE_INSTALL_SHAREDSTATEDIR:PATH=com

//Read-only single-machine data (etc)
CMAKE_INSTALL_SYSCONFDIR:PATH=etc

//Path to a program.
CMAKE_LINKER:FILEPATH=C:/Program Files (x86)/Microsoft Visual Studio/2019/Community/VC/Tools/MSVC/14.26.28801/bin/Hostx64/x64/link.exe

//Flags used by the linker during the creation of modules during
// all build types.
CMAKE_MODULE_LINKER_FLAGS:STRING=/machine:x64

//Flags used by the linker during the creation of modules during
// DEBUG builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL

//Flags used by the linker during the creation of modules during
// MINSIZEREL builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO

//Flags used by the linker during the creation of modules during
// RELEASE builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO

//Flags used by the linker during the creation of modules during
// RELWITHDEBINFO builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL

//Path to a program.
CMAKE_MT:FILEPATH=CMAKE_MT-NOTFOUND

//Value Computed by CMake
CMAKE_PROJECT_DESCRIPTION:STATIC=

//Value Computed by CMake
CMAKE_PROJECT_HOMEPAGE_URL:STATIC=

//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=ITK

//Value Computed by CMake
CMAKE_PROJECT_VERSION:STATIC=5.1.0

//Value Computed by CMake
CMAKE_PROJECT_VERSION_MAJOR:STATIC=5

//Value Computed by CMake
CMAKE_PROJECT_VERSION_MINOR:STATIC=1

//Value Computed by CMake
CMAKE_PROJECT_VERSION_PATCH:STATIC=0

//Value Computed by CMake
CMAKE_PROJECT_VERSION_TWEAK:STATIC=

//RC compiler
CMAKE_RC_COMPILER:FILEPATH=rc

//Flags for Windows Resource Compiler during all build types.
CMAKE_RC_FLAGS:STRING=-DWIN32

//Flags for Windows Resource Compiler during DEBUG builds.
CMAKE_RC_FLAGS_DEBUG:STRING=-D_DEBUG

//Flags for Windows Resource Compiler during MINSIZEREL builds.
CMAKE_RC_FLAGS_MINSIZEREL:STRING=

//Flags for Windows Resource Compiler during RELEASE builds.
CMAKE_RC_FLAGS_RELEASE:STRING=

//Flags for Windows Resource Compiler during RELWITHDEBINFO builds.
CMAKE_RC_FLAGS_RELWITHDEBINFO:STRING=

//Flags used by the linker during the creation of shared libraries
// during all build types.
CMAKE_SHARED_LINKER_FLAGS:STRING=/machine:x64

//Flags used by the linker during the creation of shared libraries
// during DEBUG builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=/debug /INCREMENTAL

//Flags used by the linker during the creation of shared libraries
// during MINSIZEREL builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=/INCREMENTAL:NO

//Flags used by the linker during the creation of shared libraries
// during RELEASE builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=/INCREMENTAL:NO

//Flags used by the linker during the creation of shared libraries
// during RELWITHDEBINFO builds.
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=/debug /INCREMENTAL

//If set, runtime paths are not added when installing shared libraries,
// but are added when building.
CMAKE_SKIP_INSTALL_RPATH:BOOL=OFF

//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=OFF

//Flags used by the linker during the creation of static libraries
// during all build types.
CMAKE_STATIC_LINKER_FLAGS:STRING=/machine:x64

//Flags used by the linker during the creation of static libraries
// during DEBUG builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=

//Flags used by the linker during the creation of static libraries
// during MINSIZEREL builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=

//Flags used by the linker during the creation of static libraries
// during RELEASE builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=

//Flags used by the linker during the creation of static libraries
// during RELWITHDEBINFO builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=

//Thread library used.
CMAKE_THREAD_LIBS:STRING=

//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make.  This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=OFF

//Enable to build 7-Zip packages
CPACK_BINARY_7Z:BOOL=OFF

//Enable to build IFW packages
CPACK_BINARY_IFW:BOOL=OFF

//Enable to build NSIS packages
CPACK_BINARY_NSIS:BOOL=ON

//Enable to build NuGet packages
CPACK_BINARY_NUGET:BOOL=OFF

//Enable to build WiX packages
CPACK_BINARY_WIX:BOOL=OFF

//Enable to build ZIP packages
CPACK_BINARY_ZIP:BOOL=OFF

//Enable to build 7-Zip source packages
CPACK_SOURCE_7Z:BOOL=ON

//Enable to build ZIP source packages
CPACK_SOURCE_ZIP:BOOL=ON

//Path to a program.
CPPCHECK_EXECUTABLE:FILEPATH=CPPCHECK_EXECUTABLE-NOTFOUND

//Path to search for cppcheck
CPPCHECK_ROOT_DIR:PATH=

//Path to a program.
CYGWIN_BAT:FILEPATH=E:/cygwin64/Cygwin.bat

//Disable all ITK module tests in `test` folder
DISABLE_MODULE_TESTS:BOOL=OFF

//Single output directory for building all executables.
EXECUTABLE_OUTPUT_PATH:PATH=/bin

//Semicolon-separated list of local directories holding data objects
// in the layout %(algo)/%(hash).
ExternalData_OBJECT_STORES:STRING=

//Additional URL templates for the ExternalData CMake script to
// look for testing data. E.g.
//\nfile:///var/bigharddrive/%(algo)/%(hash)
ExternalData_URL_TEMPLATES:STRING=

//Value Computed by CMake
GDCMCHARLS_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/GDCM/src/gdcm/Utilities/gdcmcharls

//Value Computed by CMake
GDCMCHARLS_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/GDCM/src/gdcm/Utilities/gdcmcharls

//Value Computed by CMake
GDCMJPEG_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/GDCM/src/gdcm/Utilities/gdcmjpeg

//Value Computed by CMake
GDCMJPEG_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/GDCM/src/gdcm/Utilities/gdcmjpeg

//Value Computed by CMake
GDCMOPENJPEG_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/GDCM/src/gdcm/Utilities/gdcmopenjpeg

//Value Computed by CMake
GDCMOPENJPEG_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/GDCM/src/gdcm/Utilities/gdcmopenjpeg

//Value Computed by CMake
GDCMSOCKETXX_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/GDCM/src/gdcm/Utilities/socketxx

//Value Computed by CMake
GDCMSOCKETXX_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/GDCM/src/gdcm/Utilities/socketxx

//Value Computed by CMake
GDCM_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/GDCM/src/gdcm

//Value Computed by CMake
GDCM_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/GDCM/src/gdcm

//Git command line client
GIT_EXECUTABLE:FILEPATH=C:/Program Files/Git/cmd/git.exe

//Value Computed by CMake
HDF5_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/HDF5/src/itkhdf5

//Build Test Generators
HDF5_BUILD_GENERATORS:BOOL=OFF

//Value Computed by CMake
HDF5_CPP_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/HDF5/src/itkhdf5/c++

//Value Computed by CMake
HDF5_CPP_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/HDF5/src/itkhdf5/c++

//Value Computed by CMake
HDF5_CPP_SRC_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/HDF5/src/itkhdf5/c++/src

//Value Computed by CMake
HDF5_CPP_SRC_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/HDF5/src/itkhdf5/c++/src

//Use prefix for custom library naming.
HDF5_EXTERNAL_LIB_PREFIX:STRING=itk

//Indicate that internal memory allocation sanity checks are enabled
HDF5_MEMORY_ALLOC_SANITY_CHECK:BOOL=OFF

//Value Computed by CMake
HDF5_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/HDF5/src/itkhdf5

//Value Computed by CMake
HDF5_SRC_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/HDF5/src/itkhdf5/src

//Value Computed by CMake
HDF5_SRC_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/HDF5/src/itkhdf5/src

//Use the HDF5 1.10.x API by default
HDF5_USE_110_API_DEFAULT:BOOL=ON

//Use the HDF5 1.8.x API by default
HDF5_USE_18_API_DEFAULT:BOOL=OFF

//Use pre-generated Files
HDF5_USE_PREGEN:BOOL=OFF

//Enable installation of googletest. (Projects embedding googletest
// may want to turn this OFF.)
INSTALL_GTEST:BOOL=ON

//Value Computed by CMake
ITK-Deconvolution_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/Deconvolution

//Value Computed by CMake
ITK-Deconvolution_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/Deconvolution

//Value Computed by CMake
ITK3P_EXPAT_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/Expat/src/expat

//Value Computed by CMake
ITK3P_EXPAT_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/Expat/src/expat

//Value Computed by CMake
ITK3P_JPEG_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/JPEG/src/itkjpeg

//Value Computed by CMake
ITK3P_JPEG_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/JPEG/src/itkjpeg

//Value Computed by CMake
ITK3P_MetaIO_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/MetaIO/src/MetaIO/src

//Value Computed by CMake
ITK3P_MetaIO_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/MetaIO/src/MetaIO/src

//Value Computed by CMake
ITK3P_NrrdIO_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/NrrdIO/src/NrrdIO

//Value Computed by CMake
ITK3P_NrrdIO_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/NrrdIO/src/NrrdIO

//Value Computed by CMake
ITK3P_OpenJPEG_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/OpenJPEG/src/openjpeg

//Value Computed by CMake
ITK3P_OpenJPEG_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/OpenJPEG/src/openjpeg

//Value Computed by CMake
ITK3P_PNG_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/PNG/src/itkpng

//Value Computed by CMake
ITK3P_PNG_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/PNG/src/itkpng

//Value Computed by CMake
ITK3P_TIFF_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/TIFF/src/itktiff

//Value Computed by CMake
ITK3P_TIFF_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/TIFF/src/itktiff

//Value Computed by CMake
ITKAnisotropicSmoothing_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/AnisotropicSmoothing

//Value Computed by CMake
ITKAnisotropicSmoothing_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/AnisotropicSmoothing

//Value Computed by CMake
ITKAntiAlias_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/AntiAlias

//Value Computed by CMake
ITKAntiAlias_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/AntiAlias

//Value Computed by CMake
ITKBiasCorrection_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/BiasCorrection

//Value Computed by CMake
ITKBiasCorrection_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/BiasCorrection

//Value Computed by CMake
ITKBinaryMathematicalMorphology_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/BinaryMathematicalMorphology

//Value Computed by CMake
ITKBinaryMathematicalMorphology_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/BinaryMathematicalMorphology

//Value Computed by CMake
ITKClassifiers_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Segmentation/Classifiers

//Value Computed by CMake
ITKClassifiers_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Segmentation/Classifiers

//Value Computed by CMake
ITKColormap_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/Colormap

//Value Computed by CMake
ITKColormap_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/Colormap

//Value Computed by CMake
ITKCommon_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Core/Common

//Value Computed by CMake
ITKCommon_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Core/Common

//Value Computed by CMake
ITKConnectedComponents_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Segmentation/ConnectedComponents

//Value Computed by CMake
ITKConnectedComponents_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Segmentation/ConnectedComponents

//Value Computed by CMake
ITKConvolution_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/Convolution

//Value Computed by CMake
ITKConvolution_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/Convolution

//Value Computed by CMake
ITKCurvatureFlow_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/CurvatureFlow

//Value Computed by CMake
ITKCurvatureFlow_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/CurvatureFlow

//Value Computed by CMake
ITKDICOMParser_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/DICOMParser

//Value Computed by CMake
ITKDICOMParser_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/DICOMParser

//Value Computed by CMake
ITKDeformableMesh_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Segmentation/DeformableMesh

//Value Computed by CMake
ITKDeformableMesh_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Segmentation/DeformableMesh

//Value Computed by CMake
ITKDenoising_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/Denoising

//Value Computed by CMake
ITKDenoising_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/Denoising

//Value Computed by CMake
ITKDiffusionTensorImage_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/DiffusionTensorImage

//Value Computed by CMake
ITKDiffusionTensorImage_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/DiffusionTensorImage

//Value Computed by CMake
ITKDisplacementField_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/DisplacementField

//Value Computed by CMake
ITKDisplacementField_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/DisplacementField

//Value Computed by CMake
ITKDistanceMap_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/DistanceMap

//Value Computed by CMake
ITKDistanceMap_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/DistanceMap

//Value Computed by CMake
ITKDoubleConversion_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/DoubleConversion

//Value Computed by CMake
ITKDoubleConversion_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/DoubleConversion

//Value Computed by CMake
ITKEigen3_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/Eigen3

//Value Computed by CMake
ITKEigen3_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/Eigen3

//Value Computed by CMake
ITKEigen_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Numerics/Eigen

//Value Computed by CMake
ITKEigen_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Numerics/Eigen

//Value Computed by CMake
ITKExpat_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/Expat

//Value Computed by CMake
ITKExpat_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/Expat

//Value Computed by CMake
ITKFFT_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/FFT

//Value Computed by CMake
ITKFFT_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/FFT

//Value Computed by CMake
ITKFastMarching_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/FastMarching

//Value Computed by CMake
ITKFastMarching_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/FastMarching

//Value Computed by CMake
ITKFiniteDifference_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Core/FiniteDifference

//Value Computed by CMake
ITKFiniteDifference_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Core/FiniteDifference

//Value Computed by CMake
ITKGDCM_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/GDCM

//Value Computed by CMake
ITKGDCM_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/GDCM

//Value Computed by CMake
ITKGIFTI_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/GIFTI

//Value Computed by CMake
ITKGIFTI_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/GIFTI

//Value Computed by CMake
ITKGPUAnisotropicSmoothing_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/GPUAnisotropicSmoothing

//Value Computed by CMake
ITKGPUAnisotropicSmoothing_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/GPUAnisotropicSmoothing

//Value Computed by CMake
ITKGPUCommon_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Core/GPUCommon

//Value Computed by CMake
ITKGPUCommon_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Core/GPUCommon

//Value Computed by CMake
ITKGPUFiniteDifference_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Core/GPUFiniteDifference

//Value Computed by CMake
ITKGPUFiniteDifference_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Core/GPUFiniteDifference

//Value Computed by CMake
ITKGPUImageFilterBase_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/GPUImageFilterBase

//Value Computed by CMake
ITKGPUImageFilterBase_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/GPUImageFilterBase

//Value Computed by CMake
ITKGPUPDEDeformableRegistration_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Registration/GPUPDEDeformable

//Value Computed by CMake
ITKGPUPDEDeformableRegistration_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Registration/GPUPDEDeformable

//Value Computed by CMake
ITKGPURegistrationCommon_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Registration/GPUCommon

//Value Computed by CMake
ITKGPURegistrationCommon_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Registration/GPUCommon

//Value Computed by CMake
ITKGPUSmoothing_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/GPUSmoothing

//Value Computed by CMake
ITKGPUSmoothing_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/GPUSmoothing

//Value Computed by CMake
ITKGPUThresholding_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/GPUThresholding

//Value Computed by CMake
ITKGPUThresholding_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/GPUThresholding

//Value Computed by CMake
ITKGoogleTest_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/GoogleTest

//Value Computed by CMake
ITKGoogleTest_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/GoogleTest

//Value Computed by CMake
ITKHDF5_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/HDF5

//Value Computed by CMake
ITKHDF5_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/HDF5

//Value Computed by CMake
ITKIOBMP_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/BMP

//Value Computed by CMake
ITKIOBMP_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/BMP

//Value Computed by CMake
ITKIOBioRad_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/BioRad

//Value Computed by CMake
ITKIOBioRad_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/BioRad

//Value Computed by CMake
ITKIOBruker_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/Bruker

//Value Computed by CMake
ITKIOBruker_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/Bruker

//Value Computed by CMake
ITKIOCSV_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/CSV

//Value Computed by CMake
ITKIOCSV_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/CSV

//Value Computed by CMake
ITKIOGDCM_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/GDCM

//Value Computed by CMake
ITKIOGDCM_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/GDCM

//Value Computed by CMake
ITKIOGE_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/GE

//Value Computed by CMake
ITKIOGE_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/GE

//Value Computed by CMake
ITKIOGIPL_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/GIPL

//Value Computed by CMake
ITKIOGIPL_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/GIPL

//Value Computed by CMake
ITKIOHDF5_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/HDF5

//Value Computed by CMake
ITKIOHDF5_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/HDF5

//Value Computed by CMake
ITKIOIPL_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/IPL

//Value Computed by CMake
ITKIOIPL_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/IPL

//Value Computed by CMake
ITKIOImageBase_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/ImageBase

//Value Computed by CMake
ITKIOImageBase_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/ImageBase

//Value Computed by CMake
ITKIOJPEG2000_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/JPEG2000

//Value Computed by CMake
ITKIOJPEG2000_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/JPEG2000

//Value Computed by CMake
ITKIOJPEG_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/JPEG

//Value Computed by CMake
ITKIOJPEG_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/JPEG

//Value Computed by CMake
ITKIOLSM_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/LSM

//Value Computed by CMake
ITKIOLSM_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/LSM

//Value Computed by CMake
ITKIOMINC_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/MINC

//Value Computed by CMake
ITKIOMINC_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/MINC

//Value Computed by CMake
ITKIOMRC_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/MRC

//Value Computed by CMake
ITKIOMRC_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/MRC

//Value Computed by CMake
ITKIOMeshBYU_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/MeshBYU

//Value Computed by CMake
ITKIOMeshBYU_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/MeshBYU

//Value Computed by CMake
ITKIOMeshBase_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/MeshBase

//Value Computed by CMake
ITKIOMeshBase_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/MeshBase

//Value Computed by CMake
ITKIOMeshFreeSurfer_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/MeshFreeSurfer

//Value Computed by CMake
ITKIOMeshFreeSurfer_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/MeshFreeSurfer

//Value Computed by CMake
ITKIOMeshGifti_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/MeshGifti

//Value Computed by CMake
ITKIOMeshGifti_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/MeshGifti

//Value Computed by CMake
ITKIOMeshOBJ_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/MeshOBJ

//Value Computed by CMake
ITKIOMeshOBJ_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/MeshOBJ

//Value Computed by CMake
ITKIOMeshOFF_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/MeshOFF

//Value Computed by CMake
ITKIOMeshOFF_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/MeshOFF

//Value Computed by CMake
ITKIOMeshVTK_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/MeshVTK

//Value Computed by CMake
ITKIOMeshVTK_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/MeshVTK

//Value Computed by CMake
ITKIOMesh_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/Mesh

//Value Computed by CMake
ITKIOMesh_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/Mesh

//Value Computed by CMake
ITKIOMeta_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/Meta

//Value Computed by CMake
ITKIOMeta_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/Meta

//Value Computed by CMake
ITKIONIFTI_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/NIFTI

//Value Computed by CMake
ITKIONIFTI_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/NIFTI

//Value Computed by CMake
ITKIONRRD_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/NRRD

//Value Computed by CMake
ITKIONRRD_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/NRRD

//Value Computed by CMake
ITKIOPNG_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/PNG

//Value Computed by CMake
ITKIOPNG_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/PNG

//Value Computed by CMake
ITKIORAW_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/RAW

//Value Computed by CMake
ITKIORAW_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/RAW

//Value Computed by CMake
ITKIOSiemens_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/Siemens

//Value Computed by CMake
ITKIOSiemens_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/Siemens

//Value Computed by CMake
ITKIOSpatialObjects_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/SpatialObjects

//Value Computed by CMake
ITKIOSpatialObjects_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/SpatialObjects

//Value Computed by CMake
ITKIOStimulate_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/Stimulate

//Value Computed by CMake
ITKIOStimulate_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/Stimulate

//Value Computed by CMake
ITKIOTIFF_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/TIFF

//Value Computed by CMake
ITKIOTIFF_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/TIFF

//Value Computed by CMake
ITKIOTransformBase_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/TransformBase

//Value Computed by CMake
ITKIOTransformBase_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/TransformBase

//Value Computed by CMake
ITKIOTransformHDF5_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/TransformHDF5

//Value Computed by CMake
ITKIOTransformHDF5_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/TransformHDF5

//Value Computed by CMake
ITKIOTransformInsightLegacy_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/TransformInsightLegacy

//Value Computed by CMake
ITKIOTransformInsightLegacy_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/TransformInsightLegacy

//Value Computed by CMake
ITKIOTransformMatlab_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/TransformMatlab

//Value Computed by CMake
ITKIOTransformMatlab_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/TransformMatlab

//Value Computed by CMake
ITKIOVTK_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/VTK

//Value Computed by CMake
ITKIOVTK_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/VTK

//Value Computed by CMake
ITKIOXML_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/XML

//Value Computed by CMake
ITKIOXML_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/XML

//Value Computed by CMake
ITKImageAdaptors_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Core/ImageAdaptors

//Value Computed by CMake
ITKImageAdaptors_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Core/ImageAdaptors

//Value Computed by CMake
ITKImageCompare_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/ImageCompare

//Value Computed by CMake
ITKImageCompare_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/ImageCompare

//Value Computed by CMake
ITKImageCompose_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/ImageCompose

//Value Computed by CMake
ITKImageCompose_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/ImageCompose

//Value Computed by CMake
ITKImageFeature_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/ImageFeature

//Value Computed by CMake
ITKImageFeature_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/ImageFeature

//Value Computed by CMake
ITKImageFilterBase_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/ImageFilterBase

//Value Computed by CMake
ITKImageFilterBase_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/ImageFilterBase

//Value Computed by CMake
ITKImageFrequency_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/ImageFrequency

//Value Computed by CMake
ITKImageFrequency_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/ImageFrequency

//Value Computed by CMake
ITKImageFunction_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Core/ImageFunction

//Value Computed by CMake
ITKImageFunction_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Core/ImageFunction

//Value Computed by CMake
ITKImageFusion_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/ImageFusion

//Value Computed by CMake
ITKImageFusion_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/ImageFusion

//Value Computed by CMake
ITKImageGradient_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/ImageGradient

//Value Computed by CMake
ITKImageGradient_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/ImageGradient

//Value Computed by CMake
ITKImageGrid_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/ImageGrid

//Value Computed by CMake
ITKImageGrid_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/ImageGrid

//Value Computed by CMake
ITKImageIntensity_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/ImageIntensity

//Value Computed by CMake
ITKImageIntensity_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/ImageIntensity

//Value Computed by CMake
ITKImageLabel_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/ImageLabel

//Value Computed by CMake
ITKImageLabel_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/ImageLabel

//Value Computed by CMake
ITKImageNoise_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/ImageNoise

//Value Computed by CMake
ITKImageNoise_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/ImageNoise

//Value Computed by CMake
ITKImageSources_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/ImageSources

//Value Computed by CMake
ITKImageSources_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/ImageSources

//Value Computed by CMake
ITKImageStatistics_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/ImageStatistics

//Value Computed by CMake
ITKImageStatistics_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/ImageStatistics

//Value Computed by CMake
ITKIntegratedTest_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Nonunit/IntegratedTest

//Value Computed by CMake
ITKIntegratedTest_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Nonunit/IntegratedTest

//Value Computed by CMake
ITKJPEG_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/JPEG

//Value Computed by CMake
ITKJPEG_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/JPEG

//Value Computed by CMake
ITKKLMRegionGrowing_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Segmentation/KLMRegionGrowing

//Value Computed by CMake
ITKKLMRegionGrowing_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Segmentation/KLMRegionGrowing

//Value Computed by CMake
ITKKWIML_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/KWIML

//Value Computed by CMake
ITKKWIML_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/KWIML

//Value Computed by CMake
ITKKWSys_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/KWSys

//Value Computed by CMake
ITKKWSys_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/KWSys

//Value Computed by CMake
ITKLIBLBFGS_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/libLBFGS

//Value Computed by CMake
ITKLIBLBFGS_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/libLBFGS

//Value Computed by CMake
ITKLabelMap_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/LabelMap

//Value Computed by CMake
ITKLabelMap_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/LabelMap

//Value Computed by CMake
ITKLabelVoting_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Segmentation/LabelVoting

//Value Computed by CMake
ITKLabelVoting_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Segmentation/LabelVoting

//Value Computed by CMake
ITKLevelSets_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Segmentation/LevelSets

//Value Computed by CMake
ITKLevelSets_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Segmentation/LevelSets

//Value Computed by CMake
ITKLevelSetsv4_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Segmentation/LevelSetsv4

//Value Computed by CMake
ITKLevelSetsv4_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Segmentation/LevelSetsv4

//Value Computed by CMake
ITKMINC_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/MINC

//Value Computed by CMake
ITKMINC_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/MINC

//Value Computed by CMake
ITKMarkovRandomFieldsClassifiers_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Segmentation/MarkovRandomFieldsClassifiers

//Value Computed by CMake
ITKMarkovRandomFieldsClassifiers_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Segmentation/MarkovRandomFieldsClassifiers

//Value Computed by CMake
ITKMathematicalMorphology_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/MathematicalMorphology

//Value Computed by CMake
ITKMathematicalMorphology_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/MathematicalMorphology

//Value Computed by CMake
ITKMesh_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Core/Mesh

//Value Computed by CMake
ITKMesh_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Core/Mesh

//Value Computed by CMake
ITKMetaIO_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/MetaIO

//Value Computed by CMake
ITKMetaIO_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/MetaIO

//Value Computed by CMake
ITKMetricsv4_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Registration/Metricsv4

//Value Computed by CMake
ITKMetricsv4_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Registration/Metricsv4

//Value Computed by CMake
ITKNIFTI_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/NIFTI

//Value Computed by CMake
ITKNIFTI_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/NIFTI

//Value Computed by CMake
ITKNarrowBand_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Numerics/NarrowBand

//Value Computed by CMake
ITKNarrowBand_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Numerics/NarrowBand

//Value Computed by CMake
ITKNetlib_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/Netlib

//Value Computed by CMake
ITKNetlib_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/Netlib

//Value Computed by CMake
ITKNrrdIO_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/NrrdIO

//Value Computed by CMake
ITKNrrdIO_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/NrrdIO

//Value Computed by CMake
ITKOpenJPEG_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/OpenJPEG

//Value Computed by CMake
ITKOpenJPEG_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/OpenJPEG

//Value Computed by CMake
ITKOptimizers_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Numerics/Optimizers

//Value Computed by CMake
ITKOptimizers_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Numerics/Optimizers

//Value Computed by CMake
ITKOptimizersv4_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Numerics/Optimizersv4

//Value Computed by CMake
ITKOptimizersv4_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Numerics/Optimizersv4

//Value Computed by CMake
ITKPDEDeformableRegistration_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Registration/PDEDeformable

//Value Computed by CMake
ITKPDEDeformableRegistration_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Registration/PDEDeformable

//Value Computed by CMake
ITKPNG_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/PNG

//Value Computed by CMake
ITKPNG_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/PNG

//Value Computed by CMake
ITKPath_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/Path

//Value Computed by CMake
ITKPath_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/Path

//Value Computed by CMake
ITKPolynomials_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Numerics/Polynomials

//Value Computed by CMake
ITKPolynomials_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Numerics/Polynomials

//Value Computed by CMake
ITKQuadEdgeMeshFiltering_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/QuadEdgeMeshFiltering

//Value Computed by CMake
ITKQuadEdgeMeshFiltering_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/QuadEdgeMeshFiltering

//Value Computed by CMake
ITKQuadEdgeMesh_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Core/QuadEdgeMesh

//Value Computed by CMake
ITKQuadEdgeMesh_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Core/QuadEdgeMesh

//Value Computed by CMake
ITKRegionGrowing_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Segmentation/RegionGrowing

//Value Computed by CMake
ITKRegionGrowing_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Segmentation/RegionGrowing

//Value Computed by CMake
ITKRegistrationCommon_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Registration/Common

//Value Computed by CMake
ITKRegistrationCommon_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Registration/Common

//Value Computed by CMake
ITKRegistrationMethodsv4_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Registration/RegistrationMethodsv4

//Value Computed by CMake
ITKRegistrationMethodsv4_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Registration/RegistrationMethodsv4

//Value Computed by CMake
ITKSignedDistanceFunction_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Segmentation/SignedDistanceFunction

//Value Computed by CMake
ITKSignedDistanceFunction_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Segmentation/SignedDistanceFunction

//Value Computed by CMake
ITKSmoothing_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/Smoothing

//Value Computed by CMake
ITKSmoothing_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/Smoothing

//Value Computed by CMake
ITKSpatialFunction_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/SpatialFunction

//Value Computed by CMake
ITKSpatialFunction_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/SpatialFunction

//Value Computed by CMake
ITKSpatialObjects_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Core/SpatialObjects

//Value Computed by CMake
ITKSpatialObjects_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Core/SpatialObjects

//Value Computed by CMake
ITKStatistics_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Numerics/Statistics

//Value Computed by CMake
ITKStatistics_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Numerics/Statistics

//Value Computed by CMake
ITKSuperPixel_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Segmentation/SuperPixel

//Value Computed by CMake
ITKSuperPixel_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Segmentation/SuperPixel

//Value Computed by CMake
ITKTBB_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/TBB

//Value Computed by CMake
ITKTBB_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/TBB

//Value Computed by CMake
ITKTIFF_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/TIFF

//Value Computed by CMake
ITKTIFF_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/TIFF

//Value Computed by CMake
ITKTestKernel_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Core/TestKernel

//Value Computed by CMake
ITKTestKernel_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Core/TestKernel

//Value Computed by CMake
ITKThresholding_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Filtering/Thresholding

//Value Computed by CMake
ITKThresholding_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Filtering/Thresholding

//Value Computed by CMake
ITKTransformFactory_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/IO/TransformFactory

//Value Computed by CMake
ITKTransformFactory_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/IO/TransformFactory

//Value Computed by CMake
ITKTransform_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Core/Transform

//Value Computed by CMake
ITKTransform_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Core/Transform

//Enable LEGACY compatibility with ITK4.x when possible.
ITKV4_COMPATIBILITY:BOOL=OFF

//Value Computed by CMake
ITKVNLInstantiation_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/VNLInstantiation

//Value Computed by CMake
ITKVNLInstantiation_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/VNLInstantiation

//Value Computed by CMake
ITKVNL_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/VNL

//Value Computed by CMake
ITKVNL_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/VNL

//Value Computed by CMake
ITKVTK_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Bridge/VTK

//Value Computed by CMake
ITKVTK_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Bridge/VTK

//Value Computed by CMake
ITKVideoCore_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Video/Core

//Value Computed by CMake
ITKVideoCore_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Video/Core

//Value Computed by CMake
ITKVideoFiltering_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Video/Filtering

//Value Computed by CMake
ITKVideoFiltering_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Video/Filtering

//Value Computed by CMake
ITKVideoIO_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Video/IO

//Value Computed by CMake
ITKVideoIO_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Video/IO

//Value Computed by CMake
ITKVoronoi_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Segmentation/Voronoi

//Value Computed by CMake
ITKVoronoi_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Segmentation/Voronoi

//Value Computed by CMake
ITKWatersheds_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/Segmentation/Watersheds

//Value Computed by CMake
ITKWatersheds_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/Segmentation/Watersheds

//Value Computed by CMake
ITKZLIB_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/ZLIB

//Value Computed by CMake
ITKZLIB_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/ZLIB

//Value Computed by CMake
ITK_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64

//Build the tests of module dependencies.
ITK_BUILD_ALL_MODULES_FOR_TESTS:BOOL=OFF

//Build the default ITK modules.
ITK_BUILD_DEFAULT_MODULES:BOOL=ON

//Build the documentation (Doxygen).
ITK_BUILD_DOCUMENTATION:BOOL=OFF

//Provide here the size of your RAM in gibibytes
ITK_COMPUTER_MEMORY_SIZE:STRING=12

//Run cppcheck for static code analysis
ITK_CPPCHECK_TEST:BOOL=OFF

//ITK CXX Compiler ABI/Optimization flags, Use '-march=native'
// to maximize performance, but break portabilitly.
ITK_CXX_OPTIMIZATION_FLAGS:STRING=

//ITK CXX compiler warning flags. Modify to suit your needs.
ITK_CXX_WARNING_FLAGS:STRING= -W3

//ITK C Compiler ABI/Optimization flags, Use '-march=native' to
// maximize performance, but break portabilitly.
ITK_C_OPTIMIZATION_FLAGS:STRING=

//ITK C compiler warning flags. Modify to suit your needs.
ITK_C_WARNING_FLAGS:STRING= -W3

//The maximum number of threads allowed. Default: 128
ITK_DEFAULT_MAX_THREADS:STRING=128

//Doxygen will generate Microsoft HTML help
ITK_DOXYGEN_CHM:BOOL=OFF

//Doxygen will generate additional index files for Xcode 3
ITK_DOXYGEN_DOCSET:BOOL=OFF

//Doxygen will generate Eclipse help plugin
ITK_DOXYGEN_ECLIPSEHELP:BOOL=OFF

//Doxygen will generate HTML Output
ITK_DOXYGEN_HTML:BOOL=ON

//Doxygen will generate LaTeX output
ITK_DOXYGEN_LATEX:BOOL=OFF

//Doxygen will generate Qt Compressed Help
ITK_DOXYGEN_QHP:BOOL=OFF

//Doxygen will generate RTF output optimized for Word 97
ITK_DOXYGEN_RTF:BOOL=OFF

//Doxygen will generate XML output
ITK_DOXYGEN_XML:BOOL=OFF

//Support run-time loading of shared libraries
ITK_DYNAMIC_LOADING:BOOL=ON

//Do not download source code or data from the network
ITK_FORBID_DOWNLOADS:BOOL=OFF

//Remove current legacy code completely.
ITK_LEGACY_REMOVE:BOOL=OFF

//Silence all legacy code messages when ITK_LEGACY_REMOVE:BOOL=OFF.
ITK_LEGACY_SILENT:BOOL=OFF

//Minimum compliance level [5,4,3,2,1,0] for selecting ITK modules.
ITK_MINIMUM_COMPLIANCE_LEVEL:STRING=3

//Which flavour of Analyze reader to use by default
ITK_NIFTI_IO_ANALYZE_FLAVOR:STRING=ITK4Warning

//Value Computed by CMake
ITK_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0

//Set symbol visibility to default for template class declarations.
// https://itk.org/Wiki/ITK/FAQ
ITK_TEMPLATE_VISIBILITY_DEFAULT:BOOL=OFF

//The transform dimensions in the range [2-(this number)] supported
// by the TransformIO.
ITK_TRANSFORM_FACTORY_MAX_DIM:STRING=4

//When ON, ITK will use 64-bit integer types instead of long types
// for sizes and indexes. This is needed for managing images larger
// than 4Gb in some platforms.
ITK_USE_64BITS_IDS:BOOL=ON

//Download and use BrainWeb data for advanced testing
ITK_USE_BRAINWEB_DATA:BOOL=OFF

//Enable the use of clang-format enforce ITK coding style.
ITK_USE_CLANGFORMAT:BOOL=OFF

//Enable the use of clang-format for coding style formatting.
ITK_USE_CLANG_FORMAT:BOOL=OFF

//Turn on concept checking to give helpful errors at compile time
// if a type cannot be used as a template parameter.
ITK_USE_CONCEPT_CHECKING:BOOL=ON

//Use NVidia CUDA cuFFT with its FFTW interface for FFT computation.
ITK_USE_CUFFTW:BOOL=OFF

//Set compile definition EIGEN_MPL2_ONLY for ITKInternalEigen3.
ITK_USE_EIGEN_MPL2_ONLY:BOOL=OFF

//Use double precision fftw if found
ITK_USE_FFTWD:BOOL=OFF

//Use single precision fftw if found
ITK_USE_FFTWF:BOOL=OFF

//Use single precision for origin/spacing/directions in itk::Image
ITK_USE_FLOAT_SPACE_PRECISION:BOOL=OFF

//If behind a firewall turn this off to use https instead.
ITK_USE_GIT_PROTOCOL:BOOL=OFF

//GPU acceleration via OpenCL
ITK_USE_GPU:BOOL=ON

//Enable the use of KWStyle for checking coding style.
ITK_USE_KWSTYLE:BOOL=OFF

//Use system Intel Math Kernel Library (MKL) for FFT computation.
ITK_USE_MKL:BOOL=OFF

//Use an outside build of double-conversion
ITK_USE_SYSTEM_DOUBLECONVERSION:BOOL=OFF

//Use an outside build of Eigen3.
ITK_USE_SYSTEM_EIGEN:BOOL=OFF

//Use system-installed expat
ITK_USE_SYSTEM_EXPAT:BOOL=OFF

//Use an installed version of fftw
ITK_USE_SYSTEM_FFTW:BOOL=OFF

//Use an outside build of GDCM.
ITK_USE_SYSTEM_GDCM:BOOL=OFF

//Use an outside build or installed source of GoogleTest. Set GTEST_ROOT
// to specify location.
ITK_USE_SYSTEM_GOOGLETEST:BOOL=OFF

//Use an outside build of HDF5.
ITK_USE_SYSTEM_HDF5:BOOL=OFF

//Use an outside build of JPEG.
ITK_USE_SYSTEM_JPEG:BOOL=OFF

//Use an outside build of KWIML.
ITK_USE_SYSTEM_KWIML:BOOL=OFF

//Use the system's libraries by default.
//\nIf this is not set during the initial configuration, it will
// have no effect.
ITK_USE_SYSTEM_LIBRARIES:BOOL=OFF

//Use system-installed MINC
ITK_USE_SYSTEM_MINC:BOOL=OFF

//Use system-installed png
ITK_USE_SYSTEM_PNG:BOOL=OFF

//Use system-installed tiff
ITK_USE_SYSTEM_TIFF:BOOL=OFF

//Use an outside build of VXL.
ITK_USE_SYSTEM_VXL:BOOL=OFF

//Use system-installed zlib
ITK_USE_SYSTEM_ZLIB:BOOL=OFF

//Build Java support (Currently not supported)
ITK_WRAP_JAVA:BOOL=OFF

//Build Perl support (Currently not supported)
ITK_WRAP_PERL:BOOL=OFF

//Build Python support
ITK_WRAP_PYTHON:BOOL=OFF

//Build Ruby support (Currently not supported)
ITK_WRAP_RUBY:BOOL=OFF

//Build Tcl support (Currently not supported)
ITK_WRAP_TCL:BOOL=OFF

//Path to the KWStyle executable
KWSTYLE_EXECUTABLE:FILEPATH=KWSTYLE_EXECUTABLE-NOTFOUND

//Value Computed by CMake
LIBMINC_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/MINC/src/libminc

//Value Computed by CMake
LIBMINC_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/MINC/src/libminc

//Single output directory for building all libraries.
LIBRARY_OUTPUT_PATH:PATH=/bin

//The number of headers in a HeaderTest code.
MAXIMUM_NUMBER_OF_HEADERS:STRING=9999

//Path to a program.
MEMORYCHECK_COMMAND:FILEPATH=MEMORYCHECK_COMMAND-NOTFOUND

//VXL module path
MODULE_PATH:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/VNL/src/vxl/config/cmake/Modules

//(Remote-3) AnalyzeObjectLabelMap plugin for ITK. From Insight
// Journal article with handle: https://hdl.handle.net/1926/593
Module_AnalyzeObjectLabelMap:BOOL=OFF

//(Remote-2) Anisotropic Non-Linear Diffusion is a powerful image
// processing technique,
//\n  which allows to simultaneously remove the noise and enhance
// sharp features
//\n  in two or three dimensional images. Anisotropic Diffusion
// is understood here
//\n  in the sense of Weickert, meaning that diffusion tensors are
// anisotropic and
//\n  reflect the local orientation of image features. This is in
// contrast with
//\n  the non-linear diffusion filter of Perona and Malik, which
// only involves
//\n  scalar diffusion coefficients, in other words isotropic diffusion
// tensors.
//\n
//\n  In this module, an anisotropic non-linear diffusion technique
// based on a recent
//\n  adaptive scheme making the diffusion stable and requiring
// limited numerical resources
//\n  is available.
//\n
//\n  From the Insight Journal Article:
//\n
//\n    "Anisotropic Diffusion in ITK"
//\n    Mirebeau J., Fehrenbach J., Risser L., Tobji S.
//\n    The Insight Journal. 2014 January-December.
//\n    https://hdl.handle.net/10380/3505
//\n    http://insight-journal.org/browse/publication/953
//\n  
Module_AnisotropicDiffusionLBR:BOOL=OFF

//(Remote-2) Approximate an image's gradient from a b-spline fit
// to its intensity.
Module_BSplineGradient:BOOL=OFF

//(Remote-2) This module contains classes related to segmentation
// of biological cells.
//\nIt has classes to represent cells' shape, color, and growth
// state.
//\nIt also has classes to represent a cell genome,
//\nwhose expression is modeled by differential equations.
Module_BioCell:BOOL=OFF

//(Remote-3) Various filters for enhancing cortical bones in quantitative
// computed tomography.
Module_BoneEnhancement:BOOL=OFF

//(Remote-3) An Insight Toolkit (ITK) based implementation for
// bone morphometry quantification from computed tomography (CT)
// images.
//\n  A more detailed description can be found in the Insight Journal
// (IJ) article:
//\n  Vimort J., McCormick M., Paniagua B.
//\n  Computing Bone Morphometric Feature Maps from 3-Dimensional
// Images
//\n  The Insight Journal. January-December. 2017.
//\n  http://hdl.handle.net/10380/3588
//\n  
Module_BoneMorphometry:BOOL=OFF

//(Remote-3) This module implements cuberille implicit surface
//\npolygonization for ITK. This method operates by diving the surface
// into a
//\nnumber of small cubes called cuberilles. Each cuberille is centered
// at a
//\npixel lying on the iso-surface and then quadrilaterals are generated
// for each
//\nface. The original approach is improved by projecting the vertices
// of each
//\ncuberille onto the implicit surface, smoothing the typical block-like
//\nresultant mesh.
//\n
//\nA more detailed description can be found in the Insight Journal
// article:
//\n
//\n  Mueller, D. "Cuberille Implicit Surface Polygonization for
// ITK"
//\n  https://hdl.handle.net/10380/3186
//\n  http://www.insight-journal.org/browse/publication/740
//\n  July 20, 2010.
//\nhttp://www.insight-journal.org/browse/publication/213
//\n
Module_Cuberille:BOOL=OFF

//(Remote-2) Computes the inverse of a displacement field.
Module_FixedPointInverseDisplacementField:BOOL=OFF

//(Remote-2) A generic interpolator for multi-label images.
Module_GenericLabelInterpolator:BOOL=OFF

//(Remote-2) This module contains a filter to compute higher order
//\n  accurate numerical derivatives and gradients from an input
// scalar image.
//\n  field from a displacement field image.
//\n  Higher Order Accurate Derivative and Gradient Calculation
// in ITK
//\n  http://www.insight-journal.org/browse/publication/775
//\n  https://hdl.handle.net/10380/3231
Module_HigherOrderAccurateGradient:BOOL=OFF

//(Remote-2) FDFImageIO plugin for ITK. Authors Gleen Pierce/Nick
// Tustison/Kent Williams
Module_IOFDF:BOOL=OFF

//(Remote-2) This module contains classes for reading and writing
// QuadEdgeMeshes using
//\n  the STL (STereoLithography)file format. https://hdl.handle.net/10380/3452
Module_IOMeshSTL:BOOL=OFF

//(Remote-2) ITK ImageIO for OpenSlide library supported file formats.
// These are generally TIFF-based microscopy formats.
Module_IOOpenSlide:BOOL=OFF

//(Remote-2) An ITK module to read and write Scanco microCT .isq
// files.
Module_IOScanco:BOOL=OFF

//(Remote-2) The modules contains classes for reading spatial transform
// from DICOM
//\n  files. See http://www.insight-journal.org/browse/publication/923
//\n             https://hdl.handle.net/10380/3468
Module_IOTransformDCMTK:BOOL=OFF

//Request building ITKBridgeNumPy (non-remote)
Module_ITKBridgeNumPy:BOOL=OFF

//Request building ITKDCMTK (non-remote)
Module_ITKDCMTK:BOOL=OFF

//Request building ITKDeprecated (non-remote)
Module_ITKDeprecated:BOOL=OFF

//Request building ITKFEM (non-remote)
Module_ITKFEM:BOOL=OFF

//Request building ITKFEMRegistration (non-remote)
Module_ITKFEMRegistration:BOOL=OFF

//Request building ITKIODCMTK (non-remote)
Module_ITKIODCMTK:BOOL=OFF

//Request building ITKIOPhilipsREC (non-remote)
Module_ITKIOPhilipsREC:BOOL=OFF

//Request building ITKIOTransformMINC (non-remote)
Module_ITKIOTransformMINC:BOOL=OFF

//Request building ITKReview (non-remote)
Module_ITKReview:BOOL=OFF

//Request building ITKTBB (non-remote)
Module_ITKTBB:BOOL=ON

//Request building ITKVideoBridgeOpenCV (non-remote)
Module_ITKVideoBridgeOpenCV:BOOL=OFF

//Request building ITKVideoBridgeVXL (non-remote)
Module_ITKVideoBridgeVXL:BOOL=OFF

//Request building ITKVtkGlue (non-remote)
Module_ITKVtkGlue:BOOL=OFF

//(Remote-2) An ITK-based implementation of steerable isotropic
// wavelet transforms for multiscale phase analysis.
//\nA more detailed description can be found in the Insight Journal
// article::
//\n
//\nCerdan, P.H. "Steerable Isotropic Wavelets for Multiscale and
// Phase Analysis".
//\n  http://hdl.handle.net/10380/3558
//\n  November, 2016.
//\n
Module_IsotropicWavelets:BOOL=OFF

//(Remote-2) Classes performing morphology efficiently on label
// images.
//\n  Label collisions are consistently handled, and
//\n  operations are efficient (approximately constant time wrt
//\n  structuring element size). Only circular/spherical/hyperspherical
//\n  structuring elements are supported.
//\n  http://www.insight-journal.org/browse/publication/228
//\n  https://hdl.handle.net/10380/3399
Module_LabelErodeDilate:BOOL=OFF

//(Remote-2) Framework for determining the sizes of lesions in
// medical images.
Module_LesionSizingToolkit:BOOL=OFF

//(Remote-2) MGHIO ImageIO plugin for ITK
Module_MGHIO:BOOL=OFF

//(Remote-2) Perturb itk::Mesh and itk::QuadEdgeMesh coordinates
// with Gaussian noise.
//\n  Please see the following Insight Journal article for an introduction
// to this module:
//\n  Vigneault, DM.  Perturbing Mesh Vertices with Additive Gaussian
// Noise.
//\n  http://hdl.handle.net/10380/3567
//\n  
Module_MeshNoise:BOOL=OFF

//(Remote-2) http://www.insight-journal.org/browse/publication/213
//\n
Module_MinimalPathExtraction:BOOL=OFF

//(Remote-3) Reconstruction of 3D volumetric dataset from a collection
// of 2D slices
Module_Montage:BOOL=OFF

//(Remote-3) nD morphological contour interpolation
//\n
//\nInsight Journal article:
//\nhttp://www.insight-journal.org/browse/publication/977
//\nhttp://hdl.handle.net/10380/3563
//\n
//\nAn ITK-based implementation of morphological contour interpolation
// based off the paper:
//\nAlbu AB, Beugeling T, Laurendeau D.
//\n'A morphology-based approach for interslice interpolation of
// anatomical slices from volumetric images.'
//\nIEEE Trans Biomed Eng. 2008 Aug;55(8):2022-38. doi: 10.1109/TBME.2008.921158.
//\n
//\nThis work is supported by NIH grant R01 EB014346
//\n'Continued development and maintenance of the ITK-SNAP 3D image
// segmentation software'.
Module_MorphologicalContourInterpolation:BOOL=OFF

//(Remote-2) Several applications such as multi-atlas segmentation
//\nrequire frequent iteration over multiple image volumes at the
// same time.
//\nDoing so with the regular ITK iterators is tedious and error
// prone
//\nas it requires updating each iterator at end of each iteration.
//\nFailing to do so results in hard to debug errors and crashes.
//\nThe MultipleImageIterator is a simple wrapper class that tries
// to make this more convenient.
//\n
//\nA more detailed description can be found in the Insight Journal
// article::
//\nSchaerer J. "A MultipleImageIterator for iterating over multiple
// images simultaneously".
//\n  http://hdl.handle.net/10380/3455
//\n  http://www.insight-journal.org/browse/publication/915
//\n  December, 2014.
//\n
Module_MultipleImageIterator:BOOL=OFF

//(Remote-2) Classes performing morphology using parabolic functions.
//\n  Fast distance transforms and binary erosions/dilations/openings/closings
//\n  by spheres, sharpenings and grayscale operations.
//\n  http://www.insight-journal.org/browse/publication/228
//\n  https://hdl.handle.net/1926/1370
Module_ParabolicMorphology:BOOL=OFF

//(Remote-2) New classes increase operating system process priority
// to
//\nminimize the impact of other processes running on the system.
//\n
//\nThese classes are used by a suite of example ITK benchmarks
// to
//\nquantify toolkit performance.
//\n
//\nFor more information, see::
//\n
//\n  McCormick M., Kang H.J., Barre S.
//\n  Performance Benchmarking the Insight Toolkit
//\n  The Insight Journal. January-December. 2016.
//\n  http://hdl.handle.net/10380/3557
//\n  http://insight-journal.org/browse/publication/972
//\n
Module_PerformanceBenchmarking:BOOL=OFF

//(Remote-2) Provides multi-scale steerable filters for computing
// phase symmetry.
//\n
//\nFor more information, see the Insight Journal article:
//\n
//\nHatt C.
//\nMulti-scale Steerable Phase-Symmetry Filters for ITK
//\nThe Insight Journal. July-December. 2011.
//\nhttp://hdl.handle.net/10380/3330
//\nhttp://www.insight-journal.org/browse/publication/846
//\n
Module_PhaseSymmetry:BOOL=OFF

//(Remote-2) This is a module to transform from cartesian to polar
// coordinate systems and back.
//\n
//\nFor more information, see the Insight Journal article:
//\n
//\n  Bican J.
//\n  Polar Transforms for ITK
//\n  The Insight Journal. July-December. 2006.
//\n  http://hdl.handle.net/1926/342
//\n  http://insight-journal.org/browse/publication/130
//\n  
Module_PolarTransform:BOOL=OFF

//(Remote-2) An ITK_-based implementation of principal components
// analysis.
//\nA more detailed description can be found in the Insight Journal
// article:
//\n  Bowers M., Younes L. ''Principal Components Analysis of Scalar,
// Vector, and Mesh Vertex Data.''
//\n    http://hdl.handle.net/10380/3386
//\n    http://www.insight-journal.org/browse/publication/878
//\n    August, 2013.
//\n
Module_PrincipalComponentsAnalysis:BOOL=OFF

//(Remote-3) Run-length encoded memory compression scheme for an
// itk::Image.
//\n
//\nInsight Journal article:
//\nhttp://www.insight-journal.org/browse/publication/978
//\nhttp://hdl.handle.net/10380/3562
//\n
//\nThis work is supported by NIH grant R01 EB014346
//\n'Continued development and maintenance of the ITK-SNAP 3D image
// segmentation software'.
Module_RLEImage:BOOL=OFF

//(Remote-3) Reconstruction Toolkit (RTK) http://www.openrtk.org/
Module_RTK:BOOL=OFF

//(Remote-2) SCIFIO (Bioformats) ImageIO plugin for ITK
Module_SCIFIO:BOOL=OFF

//(Remote-3) A Collection of filters designed for SimpleITK.
//\n  The filters in this module may be wrappers of composites ITK
//\n  filters, adapters of existing ITK filters or alternative
//\n  implementations designed for SimpleITK's requirements. Currently
// it
//\n  contains a discrete hessian, and a composite filter to compute
// objectness.
Module_SimpleITKFilters:BOOL=OFF

//(Remote-2) A class to perform automatic skull-stripping for neuroimage
// analysis.
Module_SkullStrip:BOOL=OFF

//(Remote-2) GPU and CPU Young & Van Vliet Recursive Gaussian Smoothing
// Filter: https://hdl.handle.net/10380/3425
Module_SmoothingRecursiveYvvGaussianFilter:BOOL=OFF

//(Remote-5) This module builds the examples found at https://itk.org/ITKExamples/
Module_SphinxExamples:BOOL=OFF

//(Remote-2) This module contains filter called
//\nitk::SplitComponentsImageFilter.  This filter generates component
// images from an
//\nitk::Image of, for example, itk::Vector, itk::CovariantVector,
// or
//\nitk::SymmetricSecondRankTensor. https://hdl.handle.net/10380/3230
Module_SplitComponents:BOOL=OFF

//(Remote-2) Filters to estimate a strain tensor field from a displacement
// field or a
//\nspatial transformation.
//\n
//\nFor more information, see:
//\n
//\n  McCormick M.
//\n  N-Dimensional Computation of Strain Tensor Images in the Insight
// Toolkit
//\n  The Insight Journal. January-December. 2017.
//\n  http://hdl.handle.net/10380/3573
//\n  http://insight-journal.org/browse/publication/984
//\n
Module_Strain:BOOL=OFF

//(Remote-2) Triangle and edge based QuadEdgeMesh subdivision filters.
//\n
//\nSee the following Insight Journal's publication:
//\n
//\n  Wanlin Zhu, "Triangle Mesh Subdivision"
//\n  http://www.insight-journal.org/browse/publication/831
//\n  https://hdl.handle.net/10380/3307
Module_SubdivisionQuadEdgeMeshFilter:BOOL=OFF

//(Remote-2) Filters to estimate texture feature maps from N-dimensional
// grayscale
//\nimages. This includes first-order texture features, grey level
// co-occurrence
//\nmatrix (GLCM) features, and grey level run-length matrix (GLRLM)
// features.
//\n
//\nFor more information, see:
//\n
//\n  Vimort J., McCormick M., Budin F., Paniagua B.
//\n  Computing Textural Feature Maps for N-Dimensional images
//\n  The Insight Journal. January-December. 2017.
//\n  http://hdl.handle.net/10380/3574
//\n  http://insight-journal.org/browse/publication/985
//\n
Module_TextureFeatures:BOOL=OFF

//(Remote-2) Tools for 3D thickness measurement
Module_Thickness3D:BOOL=OFF

//(Remote-2) An ITK-based implementation of fast total variation
// methods used for image denoising,
//\nimage deconvolution, and other applications.
//\n
//\nThe class itkProxTVImageFilter wraps the third party library
// proxTV for 2D and 3D images.
//\nPlease refer to the documentation upstream for a detailed description:
//\nhttps://github.com/albarji/proxTV
//\n
Module_TotalVariation:BOOL=OFF

//(Remote-3) http://www.tubetk.org
//\n
Module_TubeTK:BOOL=OFF

//(Remote-2) An ITK-based implementation of intensity-based 2D/3D
//\nrigid image registration for patient setup assessment in external
// beam
//\nradiotherapy. The registration framework was designed to simultaneously
//\nregister two projection images to a 3D image volume. The projection
// geometry
//\nwas set up to simulate the x-ray imaging system that attached
// to a medical
//\nlinear accelerator for cancer treatment. The normalized correlation
// was used
//\nas the similarity measure and the Powell's optimizer was used
// as the
//\noptimization method. Siddon-Jacobs fast ray-tracing algorithm
// was implemented
//\nto compute projection images from a 3D image volume.
//\n
//\nA more detailed description can be found in the Insight Journal
// article::
//\n
//\nWu, J. "ITK-Based Implementation of Two-Projection 2D/3D Registration
// Method with an Application in Patient Setup for External Beam
// Radiotherapy".
//\n  https://hdl.handle.net/10380/3245
//\n  http://www.insight-journal.org/browse/publication/784
//\n  December, 2010.
//\n
Module_TwoProjectionRegistration:BOOL=OFF

//(Remote-2) A module to perform variational image registration.
// https://hdl.handle.net/10380/3460
Module_VariationalRegistration:BOOL=OFF

//Value Computed by CMake
NIFTI_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/NIFTI/src/nifti

//Build various utility tools
NIFTI_BUILD_APPLICATIONS:BOOL=OFF

//Value Computed by CMake
NIFTI_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/NIFTI/src/nifti

//Configure the packaging options for NIFTI
NIFTI_USE_PACKAGING:BOOL=OFF

//Path to a program.
NSIS_EXECUTABLE:FILEPATH=C:/Program Files (x86)/NSIS/NSIS.exe

//Path to a file.
OPENCL_INCLUDE_DIRS:PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.2/include

//Path to a library.
OPENCL_LIBRARIES:FILEPATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.2/lib/x64/OpenCL.lib

//Path to search for opencl
OPENCL_ROOT_DIR:PATH=

//Disable TPsot==TNsot fix. See https://github.com/uclouvain/openjpeg/issues/254.
OPJ_DISABLE_TPSOT_FIX:BOOL=OFF

//Build with thread/mutex support 
OPJ_USE_THREAD:BOOL=ON

//Path to a program.
PERL_EXECUTABLE:FILEPATH=E:/cygwin64/bin/perl.exe

//pkg-config executable
PKG_CONFIG_EXECUTABLE:FILEPATH=PKG_CONFIG_EXECUTABLE-NOTFOUND

//The directory containing a CMake configuration file for TBB.
TBB_DIR:PATH=C:/Program Files (x86)/TBB/cmake

//Path to a file.
TESTLIB_VCL_WHERE_ROOT_DIR_H:FILEPATH=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/VNL/src/vxl/vcl/vcl_where_root_dir.h

//If OFF, The copyright of this code is questionable for inclusion
// with nifti.
USE_FSL_CODE:BOOL=OFF

//Build the nifti2 library and tools
USE_NIFTI2_CODE:BOOL=OFF

//Build nifticdf library and tools
USE_NIFTICDF_CODE:BOOL=OFF

//Whether vnl_vector/vnl_matrix accessor methods check index bounds.
VNL_CONFIG_CHECK_BOUNDS:BOOL=ON

//Enable Streaming SIMD Extensions 2 optimisations (hardware dependant).
// Currently broken. For use by VNL developers only.
VNL_CONFIG_ENABLE_SSE2:BOOL=OFF

//Enable Streaming SIMD Extensions 2 implementation of rounding
// (hardware dependant).
VNL_CONFIG_ENABLE_SSE2_ROUNDING:BOOL=ON

//Whether backward-compatibility methods are provided by vnl.
VNL_CONFIG_LEGACY_METHODS:BOOL=OFF

//Whether thread-safe vnl implementations are used.
VNL_CONFIG_THREAD_SAFE:BOOL=ON

//v3p include files
VTHREEP_INCLUDE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/VNL/src/vxl/v3p

//v3p include files
VTHREEP_INSTALL_INCLUDE_DIR:STATIC=C:/Program Files (x86)/ITK/include/vxl/v3p

//Value Computed by CMake
VXL_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/VNL/src/vxl

//VXL configuration for ITK
VXL_BUILD_CONTRIB:BOOL=OFF

//Build VXL's numerics libraries
VXL_BUILD_CORE_NUMERICS:BOOL=ON

//Turn off everything except the core numerics
VXL_BUILD_CORE_NUMERICS_ONLY:BOOL=ON

//Build doxygen-based code documentation.
VXL_BUILD_DOCUMENTATION:BOOL=OFF

//Build only nondeprecated libraries (Experimental)
VXL_BUILD_NONDEPRECATED_ONLY:BOOL=ON

//Build object libraries (to enable all in a single library)?
VXL_BUILD_OBJECT_LIBRARIES:BOOL=OFF

//Extra flags appended to CMAKE_CXX_FLAGS
VXL_EXTRA_CMAKE_CXX_FLAGS:STRING=

//Extra flags appended to CMAKE_C_FLAGS
VXL_EXTRA_CMAKE_C_FLAGS:STRING=

//Extra flags appended to CMAKE_EXE_LINKER_FLAGS
VXL_EXTRA_CMAKE_EXE_LINKER_FLAGS:STRING=

//Extra flags appended to CMAKE_MODULE_LINKER_FLAGS
VXL_EXTRA_CMAKE_MODULE_LINKER_FLAGS:STRING=

//Extra flags appended to CMAKE_SHARED_LINKER_FLAGS
VXL_EXTRA_CMAKE_SHARED_LINKER_FLAGS:STRING=

//VXL configuration for ITK
VXL_FORCE_B3P_EXPAT:BOOL=OFF

//VXL configuration for ITK
VXL_FORCE_B3P_SHAPELIB:BOOL=OFF

//Disable features and cause errors for code deprecated, or listed
// for removal
VXL_LEGACY_FUTURE_REMOVE:BOOL=ON

//Where all the vxl libraries are, for clients to use.
VXL_LIBRARY_PATH:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/lib

//VXL configuration for ITK
VXL_NO_EXPORT:BOOL=ON

//Enable long-time failing tests. If tests are failing for a long
// time, turn them off by default.
VXL_RUN_FAILING_TESTS:BOOL=OFF

//Value Computed by CMake
VXL_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/VNL/src/vxl

//Re-run the configuration tests?
VXL_UPDATE_CONFIGURATION:BOOL=OFF

//Use the GEOTIFF Library if available
VXL_USE_GEOTIFF:BOOL=ON

//Set backwards compatible implicit conversion of types without
// warning or error when ON
VXL_USE_HISTORICAL_IMPLICIT_CONVERSIONS:BOOL=ON

//Set backwards compatible exposure of data members (instead of
// private members)
VXL_USE_HISTORICAL_PROTECTED_IVARS:BOOL=ON

//Should VXL use Large File Support?
VXL_USE_LFS:BOOL=OFF

//Build overloading functions that accept Windows wide char strings?
VXL_USE_WIN_WCHAR_T:BOOL=ON

//Enable runtime warnings for deprecated functions?
WARN_DEPRECATED:BOOL=ON

//Abort on executing a deprecated function (if runtime warnings
// are enabled)?
WARN_DEPRECATED_ABORT:BOOL=OFF

//Only warn once per function (if runtime warnings are enabled)?
WARN_DEPRECATED_ONCE:BOOL=ON

//Path to a program.
WIX_EXECUTABLE:FILEPATH=WIX_EXECUTABLE-NOTFOUND

//Path to a file.
_OPENCL_CPP_INCLUDE_DIRS:PATH=C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.2/include

//The directory containing a CMake configuration file for double-conversion.
double-conversion_DIR:PATH=double-conversion_DIR-NOTFOUND

//Value Computed by CMake
gifticlib_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/GIFTI/src/gifticlib

//Value Computed by CMake
gifticlib_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/GIFTI/src/gifticlib

//Value Computed by CMake
googletest-distribution_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/GoogleTest/src/GTest-build

//Value Computed by CMake
googletest-distribution_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/GoogleTest/src/itkgoogletest

//Value Computed by CMake
gtest_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/GoogleTest/src/GTest-build/googletest

//Value Computed by CMake
gtest_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/GoogleTest/src/itkgoogletest/googletest

//Build gtest's sample programs.
gtest_build_samples:BOOL=OFF

//Build all of gtest's own tests.
gtest_build_tests:BOOL=OFF

//Build gtest with internal symbols hidden in shared libraries.
gtest_hide_internal_symbols:BOOL=OFF

//Dependencies for the target
gtest_main_LIB_DEPENDS:STATIC=general;gtest;

//Dependencies for the target
hdf5-static_LIB_DEPENDS:STATIC=general;itkzlib;

//Dependencies for the target
hdf5_cpp-static_LIB_DEPENDS:STATIC=general;hdf5-static;

//Value Computed by CMake
itkdicomparser_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/DICOMParser/src/DICOMParser

//Value Computed by CMake
itkdicomparser_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/DICOMParser/src/DICOMParser

//Dependencies for the target
itkminc2_LIB_DEPENDS:STATIC=general;hdf5_cpp-static;general;hdf5-static;general;itkzlib;

//Value Computed by CMake
itksys_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/KWSys/src/KWSys

//Dependencies for the target
itksys_LIB_DEPENDS:STATIC=general;ws2_32;general;dbghelp;general;psapi;

//Value Computed by CMake
itksys_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/KWSys/src/KWSys

//Value Computed by CMake
netlib_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/VNL/src/vxl/v3p/netlib

//Value Computed by CMake
netlib_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/VNL/src/vxl/v3p/netlib

//Value Computed by CMake
vcl_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/VNL/src/vxl/vcl

//Value Computed by CMake
vcl_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/VNL/src/vxl/vcl

//Value Computed by CMake
vnl_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/VNL/src/vxl/core/vnl

//Value Computed by CMake
vnl_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/VNL/src/vxl/core/vnl

//Value Computed by CMake
vnl_algo_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/VNL/src/vxl/core/vnl/algo

//Value Computed by CMake
vnl_algo_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/VNL/src/vxl/core/vnl/algo

//Value Computed by CMake
vthreep_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/VNL/src/vxl/v3p

//Value Computed by CMake
vthreep_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/VNL/src/vxl/v3p

//Value Computed by CMake
vxlcore_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/VNL/src/vxl/core

//Value Computed by CMake
vxlcore_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/VNL/src/vxl/core

//Value Computed by CMake
zlib_BINARY_DIR:STATIC=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/ZLIB/src/itkzlib

//Value Computed by CMake
zlib_SOURCE_DIR:STATIC=E:/InsightToolkit-5.1.0/Modules/ThirdParty/ZLIB/src/itkzlib


########################
# INTERNAL cache entries
########################

//CXX test 
BOOL_NOTDEFINED:INTERNAL=
//Builds the googlemock subproject
BUILD_GMOCK:INTERNAL=OFF
BUILD_GTEST:INTERNAL=ON
//ADVANCED property for variable: BUILD_SHARED_LIBS
BUILD_SHARED_LIBS-ADVANCED:INTERNAL=1
//Build Static Executables
BUILD_STATIC_EXECS:INTERNAL=OFF
//ADVANCED property for variable: BUILD_TESTING
BUILD_TESTING-ADVANCED:INTERNAL=0
//Build With User Defined Values
BUILD_USER_DEFINED_LIBS:INTERNAL=OFF
//ADVANCED property for variable: CMAKE_BUILD_TYPE
CMAKE_BUILD_TYPE-ADVANCED:INTERNAL=1
//STRINGS property for variable: CMAKE_BUILD_TYPE
CMAKE_BUILD_TYPE-STRINGS:INTERNAL=Debug;Release;MinSizeRel;RelWithDebInfo
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=e:/InsightToolkit-5.1.0/build/vs2019/x64
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=3
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=17
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=3
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cmake.exe
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=C:/Program Files/CMake/bin/cpack.exe
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=C:/Program Files/CMake/bin/ctest.exe
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//NO_PIE (CXX)
CMAKE_CXX_LINK_NO_PIE_SUPPORTED:INTERNAL=NO
//PIE (CXX)
CMAKE_CXX_LINK_PIE_SUPPORTED:INTERNAL=NO
//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES
CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//NO_PIE (C)
CMAKE_C_LINK_NO_PIE_SUPPORTED:INTERNAL=NO
//PIE (C)
CMAKE_C_LINK_PIE_SUPPORTED:INTERNAL=NO
//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES
CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_DEBUG_POSTFIX
CMAKE_DEBUG_POSTFIX-ADVANCED:INTERNAL=1
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Name of external makefile project generator.
CMAKE_EXTRA_GENERATOR:INTERNAL=
//Name of generator.
CMAKE_GENERATOR:INTERNAL=Visual Studio 16 2019
//Generator instance identifier.
CMAKE_GENERATOR_INSTANCE:INTERNAL=C:/Program Files (x86)/Microsoft Visual Studio/2019/Community
//Name of generator platform.
CMAKE_GENERATOR_PLATFORM:INTERNAL=x64
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Have include pthread.h
CMAKE_HAVE_PTHREAD_H:INTERNAL=
//Source directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=E:/InsightToolkit-5.1.0
//ADVANCED property for variable: CMAKE_INSTALL_BINDIR
CMAKE_INSTALL_BINDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DATADIR
CMAKE_INSTALL_DATADIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DATAROOTDIR
CMAKE_INSTALL_DATAROOTDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_DOCDIR
CMAKE_INSTALL_DOCDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_INCLUDEDIR
CMAKE_INSTALL_INCLUDEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_INFODIR
CMAKE_INSTALL_INFODIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LIBDIR
CMAKE_INSTALL_LIBDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LIBEXECDIR
CMAKE_INSTALL_LIBEXECDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LOCALEDIR
CMAKE_INSTALL_LOCALEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_LOCALSTATEDIR
CMAKE_INSTALL_LOCALSTATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_MANDIR
CMAKE_INSTALL_MANDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_OLDINCLUDEDIR
CMAKE_INSTALL_OLDINCLUDEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_PREFIX
CMAKE_INSTALL_PREFIX-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_RUNSTATEDIR
CMAKE_INSTALL_RUNSTATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SBINDIR
CMAKE_INSTALL_SBINDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SHAREDSTATEDIR
CMAKE_INSTALL_SHAREDSTATEDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_INSTALL_SYSCONFDIR
CMAKE_INSTALL_SYSCONFDIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MT
CMAKE_MT-ADVANCED:INTERNAL=1
//Does the compiler support std::.
CMAKE_NO_STD_NAMESPACE:INTERNAL=0
//number of local generators
CMAKE_NUMBER_OF_MAKEFILES:INTERNAL=297
//Platform information initialized
CMAKE_PLATFORM_INFO_INITIALIZED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_COMPILER
CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1
CMAKE_RC_COMPILER_WORKS:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS
CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS_DEBUG
CMAKE_RC_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS_MINSIZEREL
CMAKE_RC_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS_RELEASE
CMAKE_RC_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS_RELWITHDEBINFO
CMAKE_RC_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=C:/Program Files/CMake/share/cmake-3.17
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//CHECK_TYPE_SIZE: sizeof(unsigned short)
CMAKE_SIZEOF_UNSIGNED_SHORT:INTERNAL=2
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Result of TRY_COMPILE
CMAKE_STD_NAMESPACE:INTERNAL=TRUE
//ADVANCED property for variable: CMAKE_THREAD_LIBS
CMAKE_THREAD_LIBS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//Result of TEST_BIG_ENDIAN
CMAKE_WORDS_BIGENDIAN:INTERNAL=0
//Test COMPILER_HAS_DEPRECATED
COMPILER_HAS_DEPRECATED:INTERNAL=1
//Test COMPILER_HAS_DEPRECATED_ATTR
COMPILER_HAS_DEPRECATED_ATTR:INTERNAL=
//Result of TRY_COMPILE
COMPILE_RESULT:INTERNAL=FALSE
//VXL core video libraries built
CORE_VIDEO_FOUND:INTERNAL=OFF
//ADVANCED property for variable: CPACK_BINARY_7Z
CPACK_BINARY_7Z-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_IFW
CPACK_BINARY_IFW-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_NSIS
CPACK_BINARY_NSIS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_NUGET
CPACK_BINARY_NUGET-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_WIX
CPACK_BINARY_WIX-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_ZIP
CPACK_BINARY_ZIP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_SOURCE_7Z
CPACK_SOURCE_7Z-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_SOURCE_ZIP
CPACK_SOURCE_ZIP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPPCHECK_EXECUTABLE
CPPCHECK_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPPCHECK_ROOT_DIR
CPPCHECK_ROOT_DIR-ADVANCED:INTERNAL=1
//Test CXX_HAS_DISABLE_OPTIMIZATION_FLAG
CXX_HAS_DISABLE_OPTIMIZATION_FLAG:INTERNAL=
//Test CXX_HAS_WARNING-W3
CXX_HAS_WARNING-W3:INTERNAL=1
//Test CXX_HAS_WARNING-Wcast-align
CXX_HAS_WARNING-Wcast-align:INTERNAL=
//Test CXX_HAS_WARNING-Wdisabled-optimization
CXX_HAS_WARNING-Wdisabled-optimization:INTERNAL=
//Test CXX_HAS_WARNING-Wextra
CXX_HAS_WARNING-Wextra:INTERNAL=
//Test CXX_HAS_WARNING-Wformat_2
CXX_HAS_WARNING-Wformat_2:INTERNAL=
//Test CXX_HAS_WARNING-Winvalid-pch
CXX_HAS_WARNING-Winvalid-pch:INTERNAL=
//Test CXX_HAS_WARNING-Wno-deprecated
CXX_HAS_WARNING-Wno-deprecated:INTERNAL=
//Test CXX_HAS_WARNING-Wno-format-nonliteral
CXX_HAS_WARNING-Wno-format-nonliteral:INTERNAL=
//Test CXX_HAS_WARNING-Wno-invalid-offsetof
CXX_HAS_WARNING-Wno-invalid-offsetof:INTERNAL=
//Test CXX_HAS_WARNING-Wno-long-double
CXX_HAS_WARNING-Wno-long-double:INTERNAL=
//Test CXX_HAS_WARNING-Wno-strict-overflow
CXX_HAS_WARNING-Wno-strict-overflow:INTERNAL=
//Test CXX_HAS_WARNING-Wno-undefined-var-template
CXX_HAS_WARNING-Wno-undefined-var-template:INTERNAL=
//Test CXX_HAS_WARNING-Woverloaded-virtual
CXX_HAS_WARNING-Woverloaded-virtual:INTERNAL=
//Test CXX_HAS_WARNING-Wpointer-arith
CXX_HAS_WARNING-Wpointer-arith:INTERNAL=
//Test CXX_HAS_WARNING-Wshadow
CXX_HAS_WARNING-Wshadow:INTERNAL=
//Test CXX_HAS_WARNING-Wstrict-null-sentinel
CXX_HAS_WARNING-Wstrict-null-sentinel:INTERNAL=
//Test CXX_HAS_WARNING-Wunused
CXX_HAS_WARNING-Wunused:INTERNAL=
//Test CXX_HAS_WARNING-Wwrite-strings
CXX_HAS_WARNING-Wwrite-strings:INTERNAL=
//Test CXX_HAS_WARNING-funit-at-a-time
CXX_HAS_WARNING-funit-at-a-time:INTERNAL=
//CXX test 
CXX_HAVE_OFFSETOF:INTERNAL=
//ADVANCED property for variable: CYGWIN_BAT
CYGWIN_BAT-ADVANCED:INTERNAL=1
//Test C_HAS_WARNING-W3
C_HAS_WARNING-W3:INTERNAL=1
//Test C_HAS_WARNING-Wcast-align
C_HAS_WARNING-Wcast-align:INTERNAL=
//Test C_HAS_WARNING-Wdisabled-optimization
C_HAS_WARNING-Wdisabled-optimization:INTERNAL=
//Test C_HAS_WARNING-Wextra
C_HAS_WARNING-Wextra:INTERNAL=
//Test C_HAS_WARNING-Wformat_2
C_HAS_WARNING-Wformat_2:INTERNAL=
//Test C_HAS_WARNING-Winvalid-pch
C_HAS_WARNING-Winvalid-pch:INTERNAL=
//Test C_HAS_WARNING-Wno-format-nonliteral
C_HAS_WARNING-Wno-format-nonliteral:INTERNAL=
//Test C_HAS_WARNING-Wno-long-double
C_HAS_WARNING-Wno-long-double:INTERNAL=
//Test C_HAS_WARNING-Wno-strict-overflow
C_HAS_WARNING-Wno-strict-overflow:INTERNAL=
//Test C_HAS_WARNING-Wno-uninitialized
C_HAS_WARNING-Wno-uninitialized:INTERNAL=
//Test C_HAS_WARNING-Wno-unused-parameter
C_HAS_WARNING-Wno-unused-parameter:INTERNAL=
//Test C_HAS_WARNING-Wpointer-arith
C_HAS_WARNING-Wpointer-arith:INTERNAL=
//Test C_HAS_WARNING-Wshadow
C_HAS_WARNING-Wshadow:INTERNAL=
//Test C_HAS_WARNING-Wunused
C_HAS_WARNING-Wunused:INTERNAL=
//Test C_HAS_WARNING-Wwrite-strings
C_HAS_WARNING-Wwrite-strings:INTERNAL=
//Test C_HAS_WARNING-funit-at-a-time
C_HAS_WARNING-funit-at-a-time:INTERNAL=
//ADVANCED property for variable: DISABLE_MODULE_TESTS
DISABLE_MODULE_TESTS-ADVANCED:INTERNAL=1
//Result of TRY_RUN
DOUBLE_CONVERSION_CORRECT_DOUBLE_OPERATIONS:INTERNAL=1
//Result of TRY_COMPILE
DOUBLE_CORRECT_NEEDED_COMPILED:INTERNAL=TRUE
//ADVANCED property for variable: EXECUTABLE_OUTPUT_PATH
EXECUTABLE_OUTPUT_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ExternalData_OBJECT_STORES
ExternalData_OBJECT_STORES-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ExternalData_URL_TEMPLATES
ExternalData_URL_TEMPLATES-ADVANCED:INTERNAL=1
//Result of TRY_COMPILE
FILE64_OK:INTERNAL=FALSE
//Details about finding EXPAT
FIND_PACKAGE_MESSAGE_DETAILS_EXPAT:INTERNAL=[ITKEXPAT][E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/Expat/src/expat;E:/InsightToolkit-5.1.0/Modules/ThirdParty/Expat/src/expat][v()]
//Details about finding Git
FIND_PACKAGE_MESSAGE_DETAILS_Git:INTERNAL=[C:/Program Files/Git/cmd/git.exe][v2.26.2.windows.1()]
//Details about finding OpenCL
FIND_PACKAGE_MESSAGE_DETAILS_OpenCL:INTERNAL=[C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.2/lib/x64/OpenCL.lib][C:/Program Files/NVIDIA GPU Computing Toolkit/CUDA/v10.2/include][v()]
//Details about finding Perl
FIND_PACKAGE_MESSAGE_DETAILS_Perl:INTERNAL=[E:/cygwin64/bin/perl.exe][v5.30.2()]
//Details about finding Threads
FIND_PACKAGE_MESSAGE_DETAILS_Threads:INTERNAL=[TRUE][v()]
//Details about finding ZLIB
FIND_PACKAGE_MESSAGE_DETAILS_ZLIB:INTERNAL=[itkzlib][E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/ZLIB/src;E:/InsightToolkit-5.1.0/Modules/ThirdParty/ZLIB/src][v()]
//Result of TRY_COMPILE
FSEEKO_COMPILE_OK:INTERNAL=FALSE
//ADVANCED property for variable: GDCMV2_0_COMPATIBILITY
GDCMV2_0_COMPATIBILITY-ADVANCED:INTERNAL=1
//Preserve compatibility with GDCM 2.0 release
GDCMV2_0_COMPATIBILITY:INTERNAL=ON
//ADVANCED property for variable: GDCM_ALWAYS_TRACE_MACRO
GDCM_ALWAYS_TRACE_MACRO-ADVANCED:INTERNAL=1
//When set to ON, gdcm::Trace macros will dumps message (override
// NDEBUG settings)
GDCM_ALWAYS_TRACE_MACRO:INTERNAL=OFF
GDCM_CMAKE_DIR:INTERNAL=E:/InsightToolkit-5.1.0/Modules/ThirdParty/GDCM/src/gdcm/CMake
//Test GDCM_CXX_HAS_FUNCTION
GDCM_CXX_HAS_FUNCTION:INTERNAL=1
//ADVANCED property for variable: GDCM_DEBUG_POSTFIX
GDCM_DEBUG_POSTFIX-ADVANCED:INTERNAL=1
GDCM_DEBUG_POSTFIX:INTERNAL=
//Have includes winsock.h;byteswap.h
GDCM_HAVE_BYTESWAP_FILE_H:INTERNAL=
//Have function gettimeofday
GDCM_HAVE_GETTIMEOFDAY:INTERNAL=
//Have include langinfo.h
GDCM_HAVE_LANGINFO_H:INTERNAL=
//Have symbol nl_langinfo
GDCM_HAVE_NL_LANGINFO:INTERNAL=
//Have include pthread.h
GDCM_HAVE_PTHREAD_H:INTERNAL=
//Have include rpc.h
GDCM_HAVE_RPC_H:INTERNAL=1
//Have include stdint.h
GDCM_HAVE_STDINT_H:INTERNAL=1
//Have symbol strcasecmp
GDCM_HAVE_STRCASECMP:INTERNAL=
//Have symbol strncasecmp
GDCM_HAVE_STRNCASECMP:INTERNAL=
//Have function strptime
GDCM_HAVE_STRPTIME:INTERNAL=
//Have includes ;sys/time.h
GDCM_HAVE_SYS_TIME_H:INTERNAL=
//Test GDCM_HAVE_WCHAR_IFSTREAM
GDCM_HAVE_WCHAR_IFSTREAM:INTERNAL=1
//Have include ;winsock.h
GDCM_HAVE_WINSOCK_H:INTERNAL=1
//Have function _stricmp
GDCM_HAVE__STRICMP:INTERNAL=1
//Have function _strnicmp
GDCM_HAVE__STRNICMP:INTERNAL=1
GDCM_INSTALL_PACKAGE_DIR:INTERNAL=lib/gdcm-3.0
//ADVANCED property for variable: GDCM_LEGACY_REMOVE
GDCM_LEGACY_REMOVE-ADVANCED:INTERNAL=1
//Remove all legacy code completely.
GDCM_LEGACY_REMOVE:INTERNAL=OFF
//ADVANCED property for variable: GDCM_LEGACY_SILENT
GDCM_LEGACY_SILENT-ADVANCED:INTERNAL=1
//Silence all legacy code messages.
GDCM_LEGACY_SILENT:INTERNAL=OFF
//ADVANCED property for variable: GDCM_SUPPORT_BROKEN_IMPLEMENTATION
GDCM_SUPPORT_BROKEN_IMPLEMENTATION-ADVANCED:INTERNAL=1
//Handle broken DICOM
GDCM_SUPPORT_BROKEN_IMPLEMENTATION:INTERNAL=ON
//ADVANCED property for variable: GDCM_TEMP_DIRECTORY
GDCM_TEMP_DIRECTORY-ADVANCED:INTERNAL=1
//Path to a valid temp directory
GDCM_TEMP_DIRECTORY:INTERNAL=E:/InsightToolkit-5.1.0/build/vs2019/x64/Testing/Temporary
GDCM_USE_JPEGLS:INTERNAL=ON
//ADVANCED property for variable: GDCM_USE_KAKADU
GDCM_USE_KAKADU-ADVANCED:INTERNAL=1
//Use kakadu lib, only turn it on if you know what you are doing.
GDCM_USE_KAKADU:INTERNAL=OFF
GDCM_USE_OPENJPEG_V2:INTERNAL=ON
//ADVANCED property for variable: GDCM_USE_PVRG
GDCM_USE_PVRG-ADVANCED:INTERNAL=1
//Use pvrg lib, only turn it on if you know what you are doing.
GDCM_USE_PVRG:INTERNAL=OFF
//ADVANCED property for variable: GDCM_USE_SYSTEM_CHARLS
GDCM_USE_SYSTEM_CHARLS-ADVANCED:INTERNAL=1
//Use system CharLS
GDCM_USE_SYSTEM_CHARLS:INTERNAL=OFF
//ADVANCED property for variable: GDCM_USE_SYSTEM_EXPAT
GDCM_USE_SYSTEM_EXPAT-ADVANCED:INTERNAL=1
//Use system expat
GDCM_USE_SYSTEM_EXPAT:INTERNAL=ON
//ADVANCED property for variable: GDCM_USE_SYSTEM_JSON
GDCM_USE_SYSTEM_JSON-ADVANCED:INTERNAL=1
//Use system json
GDCM_USE_SYSTEM_JSON:INTERNAL=OFF
//ADVANCED property for variable: GDCM_USE_SYSTEM_LIBXML2
GDCM_USE_SYSTEM_LIBXML2-ADVANCED:INTERNAL=1
//Use LibXml2
GDCM_USE_SYSTEM_LIBXML2:INTERNAL=OFF
//ADVANCED property for variable: GDCM_USE_SYSTEM_LJPEG
GDCM_USE_SYSTEM_LJPEG-ADVANCED:INTERNAL=1
//Use system ljpeg (ijg lib)
GDCM_USE_SYSTEM_LJPEG:INTERNAL=OFF
//ADVANCED property for variable: GDCM_USE_SYSTEM_OPENJPEG
GDCM_USE_SYSTEM_OPENJPEG-ADVANCED:INTERNAL=1
//Use system openjpeg
GDCM_USE_SYSTEM_OPENJPEG:INTERNAL=OFF
//ADVANCED property for variable: GDCM_USE_SYSTEM_OPENSSL
GDCM_USE_SYSTEM_OPENSSL-ADVANCED:INTERNAL=1
//Use system OpenSSL
GDCM_USE_SYSTEM_OPENSSL:INTERNAL=OFF
//ADVANCED property for variable: GDCM_USE_SYSTEM_PAPYRUS3
GDCM_USE_SYSTEM_PAPYRUS3-ADVANCED:INTERNAL=1
//Use system papyrus3
GDCM_USE_SYSTEM_PAPYRUS3:INTERNAL=OFF
//Use system podofo (pdf)
GDCM_USE_SYSTEM_PODOFO:INTERNAL=OFF
//ADVANCED property for variable: GDCM_USE_SYSTEM_POPPLER
GDCM_USE_SYSTEM_POPPLER-ADVANCED:INTERNAL=1
//Use system poppler (pdf)
GDCM_USE_SYSTEM_POPPLER:INTERNAL=OFF
//ADVANCED property for variable: GDCM_USE_SYSTEM_SOCKETXX
GDCM_USE_SYSTEM_SOCKETXX-ADVANCED:INTERNAL=1
//Use system socket++
GDCM_USE_SYSTEM_SOCKETXX:INTERNAL=OFF
//ADVANCED property for variable: GDCM_USE_SYSTEM_UUID
GDCM_USE_SYSTEM_UUID-ADVANCED:INTERNAL=1
//Use system uuid
GDCM_USE_SYSTEM_UUID:INTERNAL=OFF
//ADVANCED property for variable: GDCM_USE_SYSTEM_ZLIB
GDCM_USE_SYSTEM_ZLIB-ADVANCED:INTERNAL=1
//Use system zlib
GDCM_USE_SYSTEM_ZLIB:INTERNAL=ON
//wxWidgets bridge ?
GDCM_USE_WXWIDGETS:INTERNAL=OFF
//Do not change
GDCM_WRITE_ODD_LENGTH:INTERNAL=OFF
//ADVANCED property for variable: GIT_EXECUTABLE
GIT_EXECUTABLE-ADVANCED:INTERNAL=1
//Have function alarm
H5_HAVE_ALARM:INTERNAL=
//Have function asprintf
H5_HAVE_ASPRINTF:INTERNAL=
//Have function difftime
H5_HAVE_DIFFTIME:INTERNAL=1
//Have includes windows.h;sys/stat.h;sys/types.h;dirent.h
H5_HAVE_DIRENT_H:INTERNAL=
//Have includes windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h;sys/timeb.h;string.h;stdlib.h;memory.h;dlfcn.h
H5_HAVE_DLFCN_H:INTERNAL=
//Have function fcntl
H5_HAVE_FCNTL:INTERNAL=
//Have includes windows.h;sys/stat.h;sys/types.h;features.h
H5_HAVE_FEATURES_H:INTERNAL=
//Have function flock
H5_HAVE_FLOCK:INTERNAL=
//Have function fork
H5_HAVE_FORK:INTERNAL=
//Have function frexpf
H5_HAVE_FREXPF:INTERNAL=
//Have function frexpl
H5_HAVE_FREXPL:INTERNAL=
//Have function getrusage
H5_HAVE_GETRUSAGE:INTERNAL=
//Have includes windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h;sys/timeb.h;globus/common.h
H5_HAVE_GLOBUS_COMMON_H:INTERNAL=
//Other test 
H5_HAVE_INLINE:INTERNAL=1
//Have include windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h;sys/timeb.h;string.h;stdlib.h;memory.h;inttypes.h
H5_HAVE_INTTYPES_H:INTERNAL=1
//Test InitOnceExecuteOnce
H5_HAVE_IOEO:INTERNAL=1
//Have include windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h
H5_HAVE_IO_H:INTERNAL=1
//Have library ucb;
H5_HAVE_LIBUCB:INTERNAL=
//Have function llround
H5_HAVE_LLROUND:INTERNAL=1
//Have function llroundf
H5_HAVE_LLROUNDF:INTERNAL=1
//Have function lround
H5_HAVE_LROUND:INTERNAL=1
//Have function lroundf
H5_HAVE_LROUNDF:INTERNAL=1
//Have function lstat
H5_HAVE_LSTAT:INTERNAL=
//Have includes windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;mach/mach_time.h
H5_HAVE_MACH_MACH_TIME_H:INTERNAL=
//Have symbol sigsetjmp
H5_HAVE_MACRO_SIGSETJMP:INTERNAL=
//Have include windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h;sys/timeb.h;string.h;stdlib.h;memory.h
H5_HAVE_MEMORY_H:INTERNAL=1
//Have includes windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h;sys/timeb.h;string.h;stdlib.h;memory.h;inttypes.h;netinet/in.h
H5_HAVE_NETINET_IN_H:INTERNAL=
//Have includes windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h;sys/timeb.h;pdb.h
H5_HAVE_PDB_H:INTERNAL=
//Have includes windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h;sys/timeb.h;pthread.h
H5_HAVE_PTHREAD_H:INTERNAL=
//Have function random
H5_HAVE_RANDOM:INTERNAL=
//Have function rand_r
H5_HAVE_RAND_R:INTERNAL=
//Have function round
H5_HAVE_ROUND:INTERNAL=1
//Have function roundf
H5_HAVE_ROUNDF:INTERNAL=1
//Have function setjmp
H5_HAVE_SETJMP:INTERNAL=1
//Have include windows.h;sys/stat.h;sys/types.h;setjmp.h
H5_HAVE_SETJMP_H:INTERNAL=1
//Have function setsysinfo
H5_HAVE_SETSYSINFO:INTERNAL=
//Have function siglongjmp
H5_HAVE_SIGLONGJMP:INTERNAL=
//Have function signal
H5_HAVE_SIGNAL:INTERNAL=1
//Have function sigprocmask
H5_HAVE_SIGPROCMASK:INTERNAL=
//Have function sigsetjmp
H5_HAVE_SIGSETJMP:INTERNAL=
//Have function snprintf
H5_HAVE_SNPRINTF:INTERNAL=
//Have function srandom
H5_HAVE_SRANDOM:INTERNAL=
//Have includes windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h;sys/timeb.h;srbclient.h
H5_HAVE_SRBCLIENT_H:INTERNAL=
//Have include windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h;sys/timeb.h;string.h;stdlib.h;memory.h;inttypes.h;stdbool.h
H5_HAVE_STDBOOL_H:INTERNAL=1
//Have include windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h
H5_HAVE_STDINT_H:INTERNAL=1
//Have include stdint.h
H5_HAVE_STDINT_H_CXX:INTERNAL=1
//Have include windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h;sys/timeb.h;string.h;stdlib.h
H5_HAVE_STDLIB_H:INTERNAL=1
//Have includes windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h;sys/timeb.h;string.h;strings.h
H5_HAVE_STRINGS_H:INTERNAL=
//Have include windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h;sys/timeb.h;string.h
H5_HAVE_STRING_H:INTERNAL=1
//Have function strtoll
H5_HAVE_STRTOLL:INTERNAL=1
//Have function strtoull
H5_HAVE_STRTOULL:INTERNAL=1
//Have function symlink
H5_HAVE_SYMLINK:INTERNAL=
//Have includes windows.h;sys/file.h
H5_HAVE_SYS_FILE_H:INTERNAL=
//Have includes windows.h;sys/ioctl.h
H5_HAVE_SYS_IOCTL_H:INTERNAL=
H5_HAVE_SYS_PROC_H:INTERNAL=
//Have includes windows.h;sys/resource.h
H5_HAVE_SYS_RESOURCE_H:INTERNAL=
//Have includes windows.h;sys/socket.h
H5_HAVE_SYS_SOCKET_H:INTERNAL=
H5_HAVE_SYS_SYSINFO_H:INTERNAL=
//Have include windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h;sys/timeb.h
H5_HAVE_SYS_TIMEB_H:INTERNAL=1
//Have includes windows.h;sys/stat.h;sys/time.h
H5_HAVE_SYS_TIME_H:INTERNAL=
//Have function tmpfile
H5_HAVE_TMPFILE:INTERNAL=1
//Have includes windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;unistd.h
H5_HAVE_UNISTD_H:INTERNAL=
//Have function vasprintf
H5_HAVE_VASPRINTF:INTERNAL=
//Have function vsnprintf
H5_HAVE_VSNPRINTF:INTERNAL=
//Have function waitpid
H5_HAVE_WAITPID:INTERNAL=
//Have include windows.h;sys/stat.h;sys/types.h;setjmp.h;stddef.h;stdint.h;io.h;winsock2.h
H5_HAVE_WINSOCK2_H:INTERNAL=1
//Other test 
H5_HAVE___INLINE:INTERNAL=1
//Other test 
H5_HAVE___INLINE__:INTERNAL=
//Checking IF correctly converting long double to (unsigned) long
// long values
H5_LDOUBLE_TO_LLONG_ACCURATE:INTERNAL=
//Result of TRY_COMPILE
H5_LDOUBLE_TO_LLONG_ACCURATE_COMPILE:INTERNAL=FALSE
//Checking IF your system converts long double to (unsigned) long
// values with special algorithm
H5_LDOUBLE_TO_LONG_SPECIAL:INTERNAL=
//Result of TRY_COMPILE
H5_LDOUBLE_TO_LONG_SPECIAL_COMPILE:INTERNAL=FALSE
//Checking IF correctly converting (unsigned) long long to long
// double values
H5_LLONG_TO_LDOUBLE_CORRECT:INTERNAL=
//Result of TRY_COMPILE
H5_LLONG_TO_LDOUBLE_CORRECT_COMPILE:INTERNAL=FALSE
//Checking IF your system can convert (unsigned) long to long double
// values with special algorithm
H5_LONG_TO_LDOUBLE_SPECIAL:INTERNAL=
//Result of TRY_COMPILE
H5_LONG_TO_LDOUBLE_SPECIAL_COMPILE:INTERNAL=FALSE
//Checking IF alignment restrictions are strictly enforced
H5_NO_ALIGNMENT_RESTRICTIONS:INTERNAL=
//Result of TRY_COMPILE
H5_NO_ALIGNMENT_RESTRICTIONS_COMPILE:INTERNAL=FALSE
//Result of TRY_COMPILE
H5_PRINTF_LL_TEST_COMPILE:INTERNAL=TRUE
//Result of TRY_RUN
H5_PRINTF_LL_TEST_RUN:INTERNAL=0
//Width for printf for type `long long' or `__int64', us. `ll
H5_PRINTF_LL_WIDTH:INTERNAL="I64"
//CHECK_TYPE_SIZE: sizeof(_Bool)
H5_SIZEOF_BOOL:INTERNAL=1
//CHECK_TYPE_SIZE: sizeof(char)
H5_SIZEOF_CHAR:INTERNAL=1
//CHECK_TYPE_SIZE: sizeof(double)
H5_SIZEOF_DOUBLE:INTERNAL=8
//CHECK_TYPE_SIZE: sizeof(float)
H5_SIZEOF_FLOAT:INTERNAL=4
//CHECK_TYPE_SIZE: sizeof(int)
H5_SIZEOF_INT:INTERNAL=4
//CHECK_TYPE_SIZE: sizeof(int16_t)
H5_SIZEOF_INT16_T:INTERNAL=2
//CHECK_TYPE_SIZE: sizeof(int32_t)
H5_SIZEOF_INT32_T:INTERNAL=4
//CHECK_TYPE_SIZE: sizeof(int64_t)
H5_SIZEOF_INT64_T:INTERNAL=8
//CHECK_TYPE_SIZE: sizeof(int8_t)
H5_SIZEOF_INT8_T:INTERNAL=1
//CHECK_TYPE_SIZE: sizeof(int_fast16_t)
H5_SIZEOF_INT_FAST16_T:INTERNAL=4
//CHECK_TYPE_SIZE: sizeof(int_fast32_t)
H5_SIZEOF_INT_FAST32_T:INTERNAL=4
//CHECK_TYPE_SIZE: sizeof(int_fast64_t)
H5_SIZEOF_INT_FAST64_T:INTERNAL=8
//CHECK_TYPE_SIZE: sizeof(int_fast8_t)
H5_SIZEOF_INT_FAST8_T:INTERNAL=1
//CHECK_TYPE_SIZE: sizeof(int_least16_t)
H5_SIZEOF_INT_LEAST16_T:INTERNAL=2
//CHECK_TYPE_SIZE: sizeof(int_least32_t)
H5_SIZEOF_INT_LEAST32_T:INTERNAL=4
//CHECK_TYPE_SIZE: sizeof(int_least64_t)
H5_SIZEOF_INT_LEAST64_T:INTERNAL=8
//CHECK_TYPE_SIZE: sizeof(int_least8_t)
H5_SIZEOF_INT_LEAST8_T:INTERNAL=1
//CHECK_TYPE_SIZE: sizeof(long)
H5_SIZEOF_LONG:INTERNAL=4
//CHECK_TYPE_SIZE: sizeof(long double)
H5_SIZEOF_LONG_DOUBLE:INTERNAL=8
//CHECK_TYPE_SIZE: sizeof(long long)
H5_SIZEOF_LONG_LONG:INTERNAL=8
//SizeOf for off64_t
H5_SIZEOF_OFF64_T:INTERNAL=0
//CHECK_TYPE_SIZE: sizeof(off_t)
H5_SIZEOF_OFF_T:INTERNAL=4
//CHECK_TYPE_SIZE: sizeof(short)
H5_SIZEOF_SHORT:INTERNAL=2
//CHECK_TYPE_SIZE: sizeof(size_t)
H5_SIZEOF_SIZE_T:INTERNAL=8
//SizeOf for ssize_t
H5_SIZEOF_SSIZE_T:INTERNAL=0
//CHECK_TYPE_SIZE: sizeof(uint16_t)
H5_SIZEOF_UINT16_T:INTERNAL=2
//CHECK_TYPE_SIZE: sizeof(uint32_t)
H5_SIZEOF_UINT32_T:INTERNAL=4
//CHECK_TYPE_SIZE: sizeof(uint64_t)
H5_SIZEOF_UINT64_T:INTERNAL=8
//CHECK_TYPE_SIZE: sizeof(uint8_t)
H5_SIZEOF_UINT8_T:INTERNAL=1
//CHECK_TYPE_SIZE: sizeof(uint_fast16_t)
H5_SIZEOF_UINT_FAST16_T:INTERNAL=4
//CHECK_TYPE_SIZE: sizeof(uint_fast32_t)
H5_SIZEOF_UINT_FAST32_T:INTERNAL=4
//CHECK_TYPE_SIZE: sizeof(uint_fast64_t)
H5_SIZEOF_UINT_FAST64_T:INTERNAL=8
//CHECK_TYPE_SIZE: sizeof(uint_fast8_t)
H5_SIZEOF_UINT_FAST8_T:INTERNAL=1
//CHECK_TYPE_SIZE: sizeof(uint_least16_t)
H5_SIZEOF_UINT_LEAST16_T:INTERNAL=2
//CHECK_TYPE_SIZE: sizeof(uint_least32_t)
H5_SIZEOF_UINT_LEAST32_T:INTERNAL=4
//CHECK_TYPE_SIZE: sizeof(uint_least64_t)
H5_SIZEOF_UINT_LEAST64_T:INTERNAL=8
//CHECK_TYPE_SIZE: sizeof(uint_least8_t)
H5_SIZEOF_UINT_LEAST8_T:INTERNAL=1
//CHECK_TYPE_SIZE: sizeof(unsigned)
H5_SIZEOF_UNSIGNED:INTERNAL=4
//CHECK_TYPE_SIZE: _Quad unknown
H5_SIZEOF__QUAD:INTERNAL=
//CHECK_TYPE_SIZE: __float128 unknown
H5_SIZEOF___FLOAT128:INTERNAL=
//CHECK_TYPE_SIZE: sizeof(__int64)
H5_SIZEOF___INT64:INTERNAL=8
//Other test 
H5_STDC_HEADERS:INTERNAL=1
//Have include assert.h
HAVE_ASSERT_H:INTERNAL=1
//Have library rt
HAVE_CLOCK_GETTIME_RT:INTERNAL=
//Have symbol clock_gettime
HAVE_CLOCK_GETTIME_SYMBOL:INTERNAL=
//Result of TRY_COMPILE
HAVE_CMAKE_SIZEOF_UNSIGNED_SHORT:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_CMAKE_WORDS_BIGENDIAN:INTERNAL=TRUE
//Have symbol copysign
HAVE_COPYSIGN:INTERNAL=1
//Have include ctype.h
HAVE_CTYPE_H:INTERNAL=1
//Have includes dirent.h
HAVE_DIRENT_H:INTERNAL=
//Have includes dlfcn.h
HAVE_DLFCN_H:INTERNAL=
//Have function drand48
HAVE_DRAND48:INTERNAL=
//Have include emmintrin.h
HAVE_EMMINTRIN_H:INTERNAL=1
//Have include fcntl.h
HAVE_FCNTL_H:INTERNAL=1
//Have function fdopen
HAVE_FDOPEN:INTERNAL=1
//Have include fenv.h
HAVE_FENV_H:INTERNAL=1
//Have include float.h
HAVE_FLOAT_H:INTERNAL=1
//Have function floor
HAVE_FLOOR:INTERNAL=1
//Have function getopt
HAVE_GETOPT:INTERNAL=
//Have function getpwnam
HAVE_GETPWNAM:INTERNAL=
//Have function gettimeofday
HAVE_GETTIMEOFDAY:INTERNAL=
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_BOOL:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_CHAR:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_DOUBLE:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_FLOAT:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_INT:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_INT16_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_INT32_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_INT64_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_INT8_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_INT_FAST16_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_INT_FAST32_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_INT_FAST64_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_INT_FAST8_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_INT_LEAST16_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_INT_LEAST32_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_INT_LEAST64_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_INT_LEAST8_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_LONG:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_LONG_DOUBLE:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_LONG_LONG:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_OFF64_T:INTERNAL=FALSE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_OFF_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_SHORT:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_SIZE_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_SSIZE_T:INTERNAL=FALSE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_UINT16_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_UINT32_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_UINT64_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_UINT8_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_UINT_FAST16_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_UINT_FAST32_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_UINT_FAST64_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_UINT_FAST8_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_UINT_LEAST16_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_UINT_LEAST32_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_UINT_LEAST64_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_UINT_LEAST8_T:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF_UNSIGNED:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF__QUAD:INTERNAL=FALSE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF___FLOAT128:INTERNAL=FALSE
//Result of TRY_COMPILE
HAVE_H5_SIZEOF___INT64:INTERNAL=TRUE
//Have includes ieeefp.h
HAVE_IEEEFP_H:INTERNAL=
//Result of TRY_COMPILE
HAVE_INLINE:INTERNAL=TRUE
//Have include inttypes.h
HAVE_INTTYPES_H:INTERNAL=1
//Result of TRY_COMPILE
HAVE_IOEO_COMPILED:INTERNAL=TRUE
//Result of TRY_RUN
HAVE_IOEO_EXITCODE:INTERNAL=0
//Have function isascii
HAVE_ISASCII:INTERNAL=
// 
HAVE_ITK_CPP_FUNCTION:INTERNAL=TRUE
//Have include limits.h
HAVE_LIMITS_H:INTERNAL=1
//Have include malloc.h
HAVE_MALLOC_H:INTERNAL=1
//Have include math.h
HAVE_MATH_H:INTERNAL=1
//Have function memmove
HAVE_MEMMOVE:INTERNAL=1
//Have include memory.h
HAVE_MEMORY_H:INTERNAL=1
//Have function memset
HAVE_MEMSET:INTERNAL=1
//Have function mkstemp
HAVE_MKSTEMP:INTERNAL=
//Have function mmap
HAVE_MMAP:INTERNAL=
//Result of TRY_COMPILE
HAVE_OFF64_T:INTERNAL=FALSE
//Result of TRY_COMPILE
HAVE_OPJ_BIG_ENDIAN:INTERNAL=TRUE
//Have function popen
HAVE_POPEN:INTERNAL=
//Have function pow
HAVE_POW:INTERNAL=1
//Have includes pwd.h
HAVE_PWD_H:INTERNAL=
//Result of TRY_COMPILE
HAVE_QNANHIBIT_VALUE:INTERNAL=TRUE
//Have symbol rint
HAVE_RINT:INTERNAL=1
//Have symbol round
HAVE_ROUND:INTERNAL=1
//Have include search.h
HAVE_SEARCH_H:INTERNAL=1
//Have function select
HAVE_SELECT:INTERNAL=
//Result of TRY_COMPILE
HAVE_SIZEOF_INT:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE_SIZEOF_LONG:INTERNAL=TRUE
//Have function sleep
HAVE_SLEEP:INTERNAL=
//Have function sqrt
HAVE_SQRT:INTERNAL=1
//Have function srand48
HAVE_SRAND48:INTERNAL=
//Have include stdarg.h
HAVE_STDARG_H:INTERNAL=1
//Have include stddef.h
HAVE_STDDEF_H:INTERNAL=1
//Have include stdint.h
HAVE_STDINT_H:INTERNAL=1
//Have include stdio.h
HAVE_STDIO_H:INTERNAL=1
//Have include stdlib.h
HAVE_STDLIB_H:INTERNAL=1
//Have function strcasecmp
HAVE_STRCASECMP:INTERNAL=
//Have function strchr
HAVE_STRCHR:INTERNAL=1
//Have function strdup
HAVE_STRDUP:INTERNAL=1
//Have function strerror
HAVE_STRERROR:INTERNAL=1
//Have include strings.h
HAVE_STRINGS_H:INTERNAL=
//Have include string.h
HAVE_STRING_H:INTERNAL=1
//Have function strrchr
HAVE_STRRCHR:INTERNAL=1
//Have function strstr
HAVE_STRSTR:INTERNAL=1
//Have function strtol
HAVE_STRTOL:INTERNAL=1
//Have function strtoul
HAVE_STRTOUL:INTERNAL=1
//Have function sysconf
HAVE_SYSCONF:INTERNAL=
//Have function system
HAVE_SYSTEM:INTERNAL=1
//Have includes sys/dir.h
HAVE_SYS_DIR_H:INTERNAL=
//Have includes sys/ndir.h
HAVE_SYS_NDIR_H:INTERNAL=
//Have includes sys/select.h
HAVE_SYS_SELECT_H:INTERNAL=
//Have include sys/stat.h
HAVE_SYS_STAT_H:INTERNAL=1
//Have includes sys/time.h
HAVE_SYS_TIME_H:INTERNAL=
//Have include sys/types.h
HAVE_SYS_TYPES_H:INTERNAL=1
//Have includes sys/wait.h
HAVE_SYS_WAIT_H:INTERNAL=
//Have function tempnam
HAVE_TEMPNAM:INTERNAL=1
//Have include time.h
HAVE_TIME_H:INTERNAL=1
//Have function tmpnam
HAVE_TMPNAM:INTERNAL=1
//Have include unistd.h
HAVE_UNISTD_H:INTERNAL=
//Have includes values.h
HAVE_VALUES_H:INTERNAL=
//Have includes vfork.h
HAVE_VFORK_H:INTERNAL=
//Result of TRY_COMPILE
HAVE_VXL_BIG_ENDIAN:INTERNAL=TRUE
//Have include windows.h
HAVE_WINDOWS_H:INTERNAL=1
//Result of TRY_COMPILE
HAVE_WORDS_BIGENDIAN:INTERNAL=TRUE
//Have function fork
HAVE_WORKING_FORK:INTERNAL=
//Have function vfork
HAVE_WORKING_VFORK:INTERNAL=
//Result of TRY_COMPILE
HAVE___INLINE:INTERNAL=TRUE
//Result of TRY_COMPILE
HAVE___INLINE__:INTERNAL=FALSE
//STRINGS property for variable: HDF5_ALLOW_EXTERNAL_SUPPORT
HDF5_ALLOW_EXTERNAL_SUPPORT-STRINGS:INTERNAL=NO;GIT;TGZ
//Allow External Library Building
HDF5_ALLOW_EXTERNAL_SUPPORT:INTERNAL=OFF
//Build HDF5 C++ Library
HDF5_BUILD_CPP_LIB:INTERNAL=ON
//TRUE to build as frameworks libraries, FALSE to build according
// to BUILD_SHARED_LIBS
HDF5_BUILD_FRAMEWORKS:INTERNAL=OFF
//ADVANCED property for variable: HDF5_BUILD_GENERATORS
HDF5_BUILD_GENERATORS-ADVANCED:INTERNAL=1
//Build HIGH Level HDF5 Library
HDF5_BUILD_HL_LIB:INTERNAL=OFF
//Build with library install_name set to the installation path
HDF5_BUILD_WITH_INSTALL_NAME:INTERNAL=OFF
//Disable compiler warnings
HDF5_DISABLE_COMPILER_WARNINGS:INTERNAL=OFF
//Enable all warnings
HDF5_ENABLE_ALL_WARNINGS:INTERNAL=OFF
//ADVANCED property for variable: HDF5_ENABLE_CODESTACK
HDF5_ENABLE_CODESTACK-ADVANCED:INTERNAL=1
//Enable the function stack tracing (for developer debugging).
HDF5_ENABLE_CODESTACK:INTERNAL=OFF
//Enable code coverage for Libraries and Programs
HDF5_ENABLE_COVERAGE:INTERNAL=OFF
//Turn on extra debug output in all packages
HDF5_ENABLE_DEBUG_APIS:INTERNAL=OFF
//Enable deprecated public API symbols
HDF5_ENABLE_DEPRECATED_SYMBOLS:INTERNAL=ON
//Build the Direct I/O Virtual File Driver
HDF5_ENABLE_DIRECT_VFD:INTERNAL=ON
//embed library info into executables
HDF5_ENABLE_EMBEDDED_LIBINFO:INTERNAL=ON
//Enable GPFS hints for the MPI/POSIX file driver
HDF5_ENABLE_GPFS:INTERNAL=OFF
//Enable group five warnings
HDF5_ENABLE_GROUPFIVE_WARNINGS:INTERNAL=OFF
//Enable group four warnings
HDF5_ENABLE_GROUPFOUR_WARNINGS:INTERNAL=OFF
//Enable group one warnings
HDF5_ENABLE_GROUPONE_WARNINGS:INTERNAL=OFF
//Enable group six warnings
HDF5_ENABLE_GROUPSIX_WARNINGS:INTERNAL=OFF
//Enable group three warnings
HDF5_ENABLE_GROUPTHREE_WARNINGS:INTERNAL=OFF
//Enable group two warnings
HDF5_ENABLE_GROUPTWO_WARNINGS:INTERNAL=OFF
//Enable group zero warnings
HDF5_ENABLE_GROUPZERO_WARNINGS:INTERNAL=OFF
//Enable datasets larger than memory
HDF5_ENABLE_HSIZET:INTERNAL=ON
//Enable support for large (64-bit) files on Linux.
HDF5_ENABLE_LARGE_FILE:INTERNAL=ON
//Enable parallel build (requires MPI)
HDF5_ENABLE_PARALLEL:INTERNAL=OFF
//Use SZip Filter
HDF5_ENABLE_SZIP_SUPPORT:INTERNAL=OFF
//Enable thread-safety
HDF5_ENABLE_THREADSAFE:INTERNAL=OFF
//ADVANCED property for variable: HDF5_ENABLE_TRACE
HDF5_ENABLE_TRACE-ADVANCED:INTERNAL=1
//Enable API tracing capability
HDF5_ENABLE_TRACE:INTERNAL=OFF
//Indicate that a memory checker is used
HDF5_ENABLE_USING_MEMCHECKER:INTERNAL=OFF
//Enable Zlib Filters
HDF5_ENABLE_Z_LIB_SUPPORT:INTERNAL=ON
//ADVANCED property for variable: HDF5_EXTERNAL_LIB_PREFIX
HDF5_EXTERNAL_LIB_PREFIX-ADVANCED:INTERNAL=1
//Securely clear file buffers before writing to file
HDF5_Enable_Clear_File_Buffers:INTERNAL=ON
//Instrument The library
HDF5_Enable_Instrument:INTERNAL=OFF
//Rebuild Generated Files
HDF5_GENERATE_HEADERS:INTERNAL=OFF
//Used to pass variables between directories
HDF5_LIBRARIES_TO_EXPORT:INTERNAL=hdf5-static;hdf5_cpp-static
//ADVANCED property for variable: HDF5_MEMORY_ALLOC_SANITY_CHECK
HDF5_MEMORY_ALLOC_SANITY_CHECK-ADVANCED:INTERNAL=1
//ADVANCED property for variable: HDF5_METADATA_TRACE_FILE
HDF5_METADATA_TRACE_FILE-ADVANCED:INTERNAL=1
//Enable metadata trace file collection
HDF5_METADATA_TRACE_FILE:INTERNAL=OFF
//ADVANCED property for variable: HDF5_NO_PACKAGES
HDF5_NO_PACKAGES-ADVANCED:INTERNAL=1
//CPACK - Disable packaging
HDF5_NO_PACKAGES:INTERNAL=OFF
//CPACK - include external libraries
HDF5_PACKAGE_EXTLIBS:INTERNAL=OFF
//Package the HDF5 Library Examples Compressed File
HDF5_PACK_EXAMPLES:INTERNAL=OFF
//ADVANCED property for variable: HDF5_STRICT_FORMAT_CHECKS
HDF5_STRICT_FORMAT_CHECKS-ADVANCED:INTERNAL=1
//Whether to perform strict file format checks
HDF5_STRICT_FORMAT_CHECKS:INTERNAL=OFF
//Execute tests with different VFDs
HDF5_TEST_VFD:INTERNAL=OFF
//ADVANCED property for variable: HDF5_USE_110_API_DEFAULT
HDF5_USE_110_API_DEFAULT-ADVANCED:INTERNAL=1
//Use the HDF5 1.6.x API by default
HDF5_USE_16_API_DEFAULT:INTERNAL=OFF
//ADVANCED property for variable: HDF5_USE_18_API_DEFAULT
HDF5_USE_18_API_DEFAULT-ADVANCED:INTERNAL=1
//Use the FLETCHER32 Filter
HDF5_USE_FILTER_FLETCHER32:INTERNAL=ON
//Use the NBIT Filter
HDF5_USE_FILTER_NBIT:INTERNAL=ON
//Use the SCALEOFFSET Filter
HDF5_USE_FILTER_SCALEOFFSET:INTERNAL=ON
//Use the SHUFFLE Filter
HDF5_USE_FILTER_SHUFFLE:INTERNAL=ON
//ADVANCED property for variable: HDF5_USE_FOLDERS
HDF5_USE_FOLDERS-ADVANCED:INTERNAL=1
//Enable folder grouping of projects in IDEs.
HDF5_USE_FOLDERS:INTERNAL=ON
//Use the PACKED BITS feature in h5dump
HDF5_USE_H5DUMP_PACKED_BITS:INTERNAL=ON
//ADVANCED property for variable: HDF5_USE_PREGEN
HDF5_USE_PREGEN-ADVANCED:INTERNAL=1
//Used to pass variables between directories
HDF5_UTILS_TO_EXPORT:INTERNAL=
//ADVANCED property for variable: HDF5_WANT_DATA_ACCURACY
HDF5_WANT_DATA_ACCURACY-ADVANCED:INTERNAL=1
//IF data accuracy is guaranteed during data conversions
HDF5_WANT_DATA_ACCURACY:INTERNAL=ON
//ADVANCED property for variable: HDF5_WANT_DCONV_EXCEPTION
HDF5_WANT_DCONV_EXCEPTION-ADVANCED:INTERNAL=1
//exception handling functions is checked during data conversions
HDF5_WANT_DCONV_EXCEPTION:INTERNAL=ON
//Use Legacy Names for Libraries and Programs
HDF_LEGACY_NAMING:INTERNAL=ON
//CXX test 
HDF_NO_NAMESPACE:INTERNAL=
//CXX test 
HDF_NO_STD:INTERNAL=
//Control testing framework (0-3)
HDF_TEST_EXPRESS:INTERNAL=OFF
//ADVANCED property for variable: INSTALL_GTEST
INSTALL_GTEST-ADVANCED:INTERNAL=1
//Request building Bridge modules
ITKGroup_Bridge:INTERNAL=OFF
//Request building Compatibility modules
ITKGroup_Compatibility:INTERNAL=OFF
//Request building Core modules
ITKGroup_Core:INTERNAL=ON
//Request building Filtering modules
ITKGroup_Filtering:INTERNAL=OFF
//Request building IO modules
ITKGroup_IO:INTERNAL=OFF
//Request building Nonunit modules
ITKGroup_Nonunit:INTERNAL=OFF
//Request building Numerics modules
ITKGroup_Numerics:INTERNAL=OFF
//Request building Registration modules
ITKGroup_Registration:INTERNAL=OFF
//Request building Remote modules
ITKGroup_Remote:INTERNAL=OFF
//Request building Segmentation modules
ITKGroup_Segmentation:INTERNAL=OFF
//Request building ThirdParty modules
ITKGroup_ThirdParty:INTERNAL=OFF
//Request building Video modules
ITKGroup_Video:INTERNAL=OFF
//ADVANCED property for variable: ITKV4_COMPATIBILITY
ITKV4_COMPATIBILITY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_BUILD_ALL_MODULES_FOR_TESTS
ITK_BUILD_ALL_MODULES_FOR_TESTS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_BUILD_DOCUMENTATION
ITK_BUILD_DOCUMENTATION-ADVANCED:INTERNAL=1
//Test ITK_COMPILER_DOES_NOT_NEED_MSSE2_FLAG
ITK_COMPILER_DOES_NOT_NEED_MSSE2_FLAG:INTERNAL=
//Result of TRY_COMPILE
ITK_COMPILER_HAS_BLOCKS:INTERNAL=FALSE
//Test ITK_COMPILER_SUPPORTS_SSE2_32
ITK_COMPILER_SUPPORTS_SSE2_32:INTERNAL=1
//Test ITK_COMPILER_SUPPORTS_SSE2_64
ITK_COMPILER_SUPPORTS_SSE2_64:INTERNAL=1
//ADVANCED property for variable: ITK_COMPUTER_MEMORY_SIZE
ITK_COMPUTER_MEMORY_SIZE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_CPPCHECK_TEST
ITK_CPPCHECK_TEST-ADVANCED:INTERNAL=1
//Result of TRY_COMPILE
ITK_CPP_FUNCTION:INTERNAL=TRUE
//ADVANCED property for variable: ITK_CXX_OPTIMIZATION_FLAGS
ITK_CXX_OPTIMIZATION_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_CXX_WARNING_FLAGS
ITK_CXX_WARNING_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_C_OPTIMIZATION_FLAGS
ITK_C_OPTIMIZATION_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_C_WARNING_FLAGS
ITK_C_WARNING_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_DEFAULT_MAX_THREADS
ITK_DEFAULT_MAX_THREADS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_DOXYGEN_CHM
ITK_DOXYGEN_CHM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_DOXYGEN_DOCSET
ITK_DOXYGEN_DOCSET-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_DOXYGEN_ECLIPSEHELP
ITK_DOXYGEN_ECLIPSEHELP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_DOXYGEN_HTML
ITK_DOXYGEN_HTML-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_DOXYGEN_LATEX
ITK_DOXYGEN_LATEX-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_DOXYGEN_QHP
ITK_DOXYGEN_QHP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_DOXYGEN_RTF
ITK_DOXYGEN_RTF-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_DOXYGEN_XML
ITK_DOXYGEN_XML-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_DYNAMIC_LOADING
ITK_DYNAMIC_LOADING-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_FORBID_DOWNLOADS
ITK_FORBID_DOWNLOADS-ADVANCED:INTERNAL=1
//Result of TRY_COMPILE
ITK_HAS_FEENABLEEXCEPT:INTERNAL=FALSE
//Result of TRY_COMPILE
ITK_HAS_FEGETENV:INTERNAL=TRUE
//Result of TRY_COMPILE
ITK_HAS_FESETENV:INTERNAL=TRUE
//Result of TRY_COMPILE
ITK_HAS_GNU_ATTRIBUTE_ALIGNED:INTERNAL=FALSE
//Have symbol InterlockedAdd
ITK_HAS_INTERLOCKEDADD:INTERNAL=1
//Result of TRY_COMPILE
ITK_HAS_MALLINFO:INTERNAL=FALSE
//Result of TRY_COMPILE
ITK_HAS_STRUCT_FENV_T_CONTROL:INTERNAL=FALSE
//Result of TRY_COMPILE
ITK_HAS_STRUCT_FENV_T_CONTROL_WORD:INTERNAL=FALSE
//Result of TRY_COMPILE
ITK_HAS_STRUCT_FENV_T_CW:INTERNAL=FALSE
//ADVANCED property for variable: ITK_LEGACY_REMOVE
ITK_LEGACY_REMOVE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_LEGACY_SILENT
ITK_LEGACY_SILENT-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_MINIMUM_COMPLIANCE_LEVEL
ITK_MINIMUM_COMPLIANCE_LEVEL-ADVANCED:INTERNAL=0
//Result of TRY_COMPILE
ITK_MIN_CXX_LEVEL_TEST:INTERNAL=FALSE
//ADVANCED property for variable: ITK_NIFTI_IO_ANALYZE_FLAVOR
ITK_NIFTI_IO_ANALYZE_FLAVOR-ADVANCED:INTERNAL=1
//STRINGS property for variable: ITK_NIFTI_IO_ANALYZE_FLAVOR
ITK_NIFTI_IO_ANALYZE_FLAVOR-STRINGS:INTERNAL=ITK4Warning;ITK4;SPM;FSL;Reject
//MSVC is know to support dynamic_cast of private symbols.
ITK_PRIVATE_DYNAMIC_CAST:INTERNAL=1
//Result of TRY_COMPILE
ITK_SUPPORTS_FDSTREAM_HPP:INTERNAL=TRUE
//Result of TRY_COMPILE
ITK_SUPPORTS_WCHAR_T_FILENAME_CSTYLEIO:INTERNAL=TRUE
//Result of TRY_COMPILE
ITK_SUPPORTS_WCHAR_T_FILENAME_IOSTREAMS_CONSTRUCTORS:INTERNAL=TRUE
//ADVANCED property for variable: ITK_TEMPLATE_VISIBILITY_DEFAULT
ITK_TEMPLATE_VISIBILITY_DEFAULT-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_TRANSFORM_FACTORY_MAX_DIM
ITK_TRANSFORM_FACTORY_MAX_DIM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_64BITS_IDS
ITK_USE_64BITS_IDS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_BRAINWEB_DATA
ITK_USE_BRAINWEB_DATA-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_CLANGFORMAT
ITK_USE_CLANGFORMAT-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_CLANG_FORMAT
ITK_USE_CLANG_FORMAT-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_CONCEPT_CHECKING
ITK_USE_CONCEPT_CHECKING-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_CUFFTW
ITK_USE_CUFFTW-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_EIGEN_MPL2_ONLY
ITK_USE_EIGEN_MPL2_ONLY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_FFTWD
ITK_USE_FFTWD-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_FFTWF
ITK_USE_FFTWF-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_FLOAT_SPACE_PRECISION
ITK_USE_FLOAT_SPACE_PRECISION-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_GIT_PROTOCOL
ITK_USE_GIT_PROTOCOL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_GPU
ITK_USE_GPU-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_KWSTYLE
ITK_USE_KWSTYLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_MKL
ITK_USE_MKL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_SYSTEM_DOUBLECONVERSION
ITK_USE_SYSTEM_DOUBLECONVERSION-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_SYSTEM_EIGEN
ITK_USE_SYSTEM_EIGEN-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_SYSTEM_EXPAT
ITK_USE_SYSTEM_EXPAT-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_SYSTEM_FFTW
ITK_USE_SYSTEM_FFTW-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_SYSTEM_GDCM
ITK_USE_SYSTEM_GDCM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_SYSTEM_GOOGLETEST
ITK_USE_SYSTEM_GOOGLETEST-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_SYSTEM_HDF5
ITK_USE_SYSTEM_HDF5-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_SYSTEM_JPEG
ITK_USE_SYSTEM_JPEG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_SYSTEM_KWIML
ITK_USE_SYSTEM_KWIML-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_SYSTEM_LIBRARIES
ITK_USE_SYSTEM_LIBRARIES-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_SYSTEM_MINC
ITK_USE_SYSTEM_MINC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_SYSTEM_PNG
ITK_USE_SYSTEM_PNG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_SYSTEM_TIFF
ITK_USE_SYSTEM_TIFF-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_SYSTEM_VXL
ITK_USE_SYSTEM_VXL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_USE_SYSTEM_ZLIB
ITK_USE_SYSTEM_ZLIB-ADVANCED:INTERNAL=1
//Build external languages support
ITK_WRAPPING:INTERNAL=OFF
//ADVANCED property for variable: ITK_WRAP_JAVA
ITK_WRAP_JAVA-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_WRAP_PERL
ITK_WRAP_PERL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_WRAP_RUBY
ITK_WRAP_RUBY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ITK_WRAP_TCL
ITK_WRAP_TCL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: KWSTYLE_EXECUTABLE
KWSTYLE_EXECUTABLE-ADVANCED:INTERNAL=1
//Result of TRY_COMPILE
KWSYS_CXX_HAS_ATOLL_COMPILED:INTERNAL=TRUE
//Result of TRY_COMPILE
KWSYS_CXX_HAS_ATOL_COMPILED:INTERNAL=TRUE
//Result of TRY_COMPILE
KWSYS_CXX_HAS_ENVIRON_IN_STDLIB_H_COMPILED:INTERNAL=TRUE
//Result of TRY_COMPILE
KWSYS_CXX_HAS_EXT_STDIO_FILEBUF_H_COMPILED:INTERNAL=FALSE
//Result of TRY_COMPILE
KWSYS_CXX_HAS_LONG_LONG_COMPILED:INTERNAL=TRUE
//Result of TRY_COMPILE
KWSYS_CXX_HAS_RLIMIT64_COMPILED:INTERNAL=FALSE
//Result of TRY_COMPILE
KWSYS_CXX_HAS_SETENV_COMPILED:INTERNAL=FALSE
//Result of TRY_COMPILE
KWSYS_CXX_HAS_UNSETENV_COMPILED:INTERNAL=FALSE
//Result of TRY_COMPILE
KWSYS_CXX_HAS_UTIMENSAT_COMPILED:INTERNAL=FALSE
//Result of TRY_COMPILE
KWSYS_CXX_HAS_UTIMES_COMPILED:INTERNAL=FALSE
//Result of TRY_COMPILE
KWSYS_CXX_HAS__ATOI64_COMPILED:INTERNAL=TRUE
//Result of TRY_COMPILE
KWSYS_CXX_HAS___INT64_COMPILED:INTERNAL=TRUE
//Result of TRY_COMPILE
KWSYS_CXX_SAME_LONG_AND___INT64_COMPILED:INTERNAL=FALSE
//Result of TRY_COMPILE
KWSYS_CXX_SAME_LONG_LONG_AND___INT64_COMPILED:INTERNAL=TRUE
//Result of TRY_COMPILE
KWSYS_CXX_STAT_HAS_ST_MTIMESPEC_COMPILED:INTERNAL=FALSE
//Result of TRY_COMPILE
KWSYS_CXX_STAT_HAS_ST_MTIM_COMPILED:INTERNAL=FALSE
//Result of TRY_COMPILE
KWSYS_C_HAS_CLOCK_GETTIME_MONOTONIC_COMPILED:INTERNAL=FALSE
//Result of TRY_COMPILE
KWSYS_C_HAS_PTRDIFF_T_COMPILED:INTERNAL=TRUE
//Result of TRY_COMPILE
KWSYS_C_HAS_SSIZE_T_COMPILED:INTERNAL=FALSE
//Result of TRY_COMPILE
KWSYS_STL_HAS_WSTRING_COMPILED:INTERNAL=TRUE
//Have includes sys/types.h;ifaddrs.h
KWSYS_SYS_HAS_IFADDRS_H:INTERNAL=
//Have symbol GetProcessMemoryInfo
KWSYS_SYS_HAS_PSAPI:INTERNAL=1
//ADVANCED property for variable: LIBRARY_OUTPUT_PATH
LIBRARY_OUTPUT_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: MAXIMUM_NUMBER_OF_HEADERS
MAXIMUM_NUMBER_OF_HEADERS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Module_AnalyzeObjectLabelMap
Module_AnalyzeObjectLabelMap-ADVANCED:INTERNAL=0
//Variable to indicate the Module_AnalyzeObjectLabelMap compliance
// level
Module_AnalyzeObjectLabelMap_REMOTE_COMPLIANCE_LEVEL:INTERNAL=3
//ADVANCED property for variable: Module_AnisotropicDiffusionLBR
Module_AnisotropicDiffusionLBR-ADVANCED:INTERNAL=1
//Variable to indicate the Module_AnisotropicDiffusionLBR compliance
// level
Module_AnisotropicDiffusionLBR_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_BSplineGradient
Module_BSplineGradient-ADVANCED:INTERNAL=1
//Variable to indicate the Module_BSplineGradient compliance level
Module_BSplineGradient_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_BioCell
Module_BioCell-ADVANCED:INTERNAL=1
//Variable to indicate the Module_BioCell compliance level
Module_BioCell_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_BoneEnhancement
Module_BoneEnhancement-ADVANCED:INTERNAL=0
//Variable to indicate the Module_BoneEnhancement compliance level
Module_BoneEnhancement_REMOTE_COMPLIANCE_LEVEL:INTERNAL=3
//ADVANCED property for variable: Module_BoneMorphometry
Module_BoneMorphometry-ADVANCED:INTERNAL=0
//Variable to indicate the Module_BoneMorphometry compliance level
Module_BoneMorphometry_REMOTE_COMPLIANCE_LEVEL:INTERNAL=3
//ADVANCED property for variable: Module_Cuberille
Module_Cuberille-ADVANCED:INTERNAL=0
//Variable to indicate the Module_Cuberille compliance level
Module_Cuberille_REMOTE_COMPLIANCE_LEVEL:INTERNAL=3
//ADVANCED property for variable: Module_FixedPointInverseDisplacementField
Module_FixedPointInverseDisplacementField-ADVANCED:INTERNAL=1
//Variable to indicate the Module_FixedPointInverseDisplacementField
// compliance level
Module_FixedPointInverseDisplacementField_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_GenericLabelInterpolator
Module_GenericLabelInterpolator-ADVANCED:INTERNAL=1
//Variable to indicate the Module_GenericLabelInterpolator compliance
// level
Module_GenericLabelInterpolator_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_HigherOrderAccurateGradient
Module_HigherOrderAccurateGradient-ADVANCED:INTERNAL=1
//Variable to indicate the Module_HigherOrderAccurateGradient compliance
// level
Module_HigherOrderAccurateGradient_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_IOFDF
Module_IOFDF-ADVANCED:INTERNAL=1
//Variable to indicate the Module_IOFDF compliance level
Module_IOFDF_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_IOMeshSTL
Module_IOMeshSTL-ADVANCED:INTERNAL=1
//Variable to indicate the Module_IOMeshSTL compliance level
Module_IOMeshSTL_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_IOOpenSlide
Module_IOOpenSlide-ADVANCED:INTERNAL=1
//Variable to indicate the Module_IOOpenSlide compliance level
Module_IOOpenSlide_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_IOScanco
Module_IOScanco-ADVANCED:INTERNAL=1
//Variable to indicate the Module_IOScanco compliance level
Module_IOScanco_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_IOTransformDCMTK
Module_IOTransformDCMTK-ADVANCED:INTERNAL=1
//Variable to indicate the Module_IOTransformDCMTK compliance level
Module_IOTransformDCMTK_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_ITKAnisotropicSmoothing
Module_ITKAnisotropicSmoothing-ADVANCED:INTERNAL=1
//Request building ITKAnisotropicSmoothing (non-remote)
Module_ITKAnisotropicSmoothing:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKAntiAlias
Module_ITKAntiAlias-ADVANCED:INTERNAL=1
//Request building ITKAntiAlias (non-remote)
Module_ITKAntiAlias:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKBiasCorrection
Module_ITKBiasCorrection-ADVANCED:INTERNAL=1
//Request building ITKBiasCorrection (non-remote)
Module_ITKBiasCorrection:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKBinaryMathematicalMorphology
Module_ITKBinaryMathematicalMorphology-ADVANCED:INTERNAL=1
//Request building ITKBinaryMathematicalMorphology (non-remote)
Module_ITKBinaryMathematicalMorphology:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKBridgeNumPy
Module_ITKBridgeNumPy-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Module_ITKClassifiers
Module_ITKClassifiers-ADVANCED:INTERNAL=1
//Request building ITKClassifiers (non-remote)
Module_ITKClassifiers:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKColormap
Module_ITKColormap-ADVANCED:INTERNAL=1
//Request building ITKColormap (non-remote)
Module_ITKColormap:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKCommon
Module_ITKCommon-ADVANCED:INTERNAL=1
//Request building ITKCommon (non-remote)
Module_ITKCommon:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKConnectedComponents
Module_ITKConnectedComponents-ADVANCED:INTERNAL=1
//Request building ITKConnectedComponents (non-remote)
Module_ITKConnectedComponents:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKConvolution
Module_ITKConvolution-ADVANCED:INTERNAL=1
//Request building ITKConvolution (non-remote)
Module_ITKConvolution:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKCurvatureFlow
Module_ITKCurvatureFlow-ADVANCED:INTERNAL=1
//Request building ITKCurvatureFlow (non-remote)
Module_ITKCurvatureFlow:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKDCMTK
Module_ITKDCMTK-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Module_ITKDICOMParser
Module_ITKDICOMParser-ADVANCED:INTERNAL=1
//Request building ITKDICOMParser (non-remote)
Module_ITKDICOMParser:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKDeconvolution
Module_ITKDeconvolution-ADVANCED:INTERNAL=1
//Request building ITKDeconvolution (non-remote)
Module_ITKDeconvolution:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKDeformableMesh
Module_ITKDeformableMesh-ADVANCED:INTERNAL=1
//Request building ITKDeformableMesh (non-remote)
Module_ITKDeformableMesh:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKDenoising
Module_ITKDenoising-ADVANCED:INTERNAL=1
//Request building ITKDenoising (non-remote)
Module_ITKDenoising:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKDeprecated
Module_ITKDeprecated-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Module_ITKDiffusionTensorImage
Module_ITKDiffusionTensorImage-ADVANCED:INTERNAL=1
//Request building ITKDiffusionTensorImage (non-remote)
Module_ITKDiffusionTensorImage:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKDisplacementField
Module_ITKDisplacementField-ADVANCED:INTERNAL=1
//Request building ITKDisplacementField (non-remote)
Module_ITKDisplacementField:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKDistanceMap
Module_ITKDistanceMap-ADVANCED:INTERNAL=1
//Request building ITKDistanceMap (non-remote)
Module_ITKDistanceMap:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKDoubleConversion
Module_ITKDoubleConversion-ADVANCED:INTERNAL=1
//Request building ITKDoubleConversion (non-remote)
Module_ITKDoubleConversion:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKEigen
Module_ITKEigen-ADVANCED:INTERNAL=1
//Request building ITKEigen (non-remote)
Module_ITKEigen:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKEigen3
Module_ITKEigen3-ADVANCED:INTERNAL=1
//Request building ITKEigen3 (non-remote)
Module_ITKEigen3:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKExpat
Module_ITKExpat-ADVANCED:INTERNAL=1
//Request building ITKExpat (non-remote)
Module_ITKExpat:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKFEM
Module_ITKFEM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Module_ITKFEMRegistration
Module_ITKFEMRegistration-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Module_ITKFFT
Module_ITKFFT-ADVANCED:INTERNAL=1
//Request building ITKFFT (non-remote)
Module_ITKFFT:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKFastMarching
Module_ITKFastMarching-ADVANCED:INTERNAL=1
//Request building ITKFastMarching (non-remote)
Module_ITKFastMarching:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKFiniteDifference
Module_ITKFiniteDifference-ADVANCED:INTERNAL=1
//Request building ITKFiniteDifference (non-remote)
Module_ITKFiniteDifference:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKGDCM
Module_ITKGDCM-ADVANCED:INTERNAL=1
//Request building ITKGDCM (non-remote)
Module_ITKGDCM:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKGIFTI
Module_ITKGIFTI-ADVANCED:INTERNAL=1
//Request building ITKGIFTI (non-remote)
Module_ITKGIFTI:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKGPUAnisotropicSmoothing
Module_ITKGPUAnisotropicSmoothing-ADVANCED:INTERNAL=1
//Request building ITKGPUAnisotropicSmoothing (non-remote)
Module_ITKGPUAnisotropicSmoothing:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKGPUCommon
Module_ITKGPUCommon-ADVANCED:INTERNAL=1
//Request building ITKGPUCommon (non-remote)
Module_ITKGPUCommon:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKGPUFiniteDifference
Module_ITKGPUFiniteDifference-ADVANCED:INTERNAL=1
//Request building ITKGPUFiniteDifference (non-remote)
Module_ITKGPUFiniteDifference:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKGPUImageFilterBase
Module_ITKGPUImageFilterBase-ADVANCED:INTERNAL=1
//Request building ITKGPUImageFilterBase (non-remote)
Module_ITKGPUImageFilterBase:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKGPUPDEDeformableRegistration
Module_ITKGPUPDEDeformableRegistration-ADVANCED:INTERNAL=1
//Request building ITKGPUPDEDeformableRegistration (non-remote)
Module_ITKGPUPDEDeformableRegistration:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKGPURegistrationCommon
Module_ITKGPURegistrationCommon-ADVANCED:INTERNAL=1
//Request building ITKGPURegistrationCommon (non-remote)
Module_ITKGPURegistrationCommon:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKGPUSmoothing
Module_ITKGPUSmoothing-ADVANCED:INTERNAL=1
//Request building ITKGPUSmoothing (non-remote)
Module_ITKGPUSmoothing:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKGPUThresholding
Module_ITKGPUThresholding-ADVANCED:INTERNAL=1
//Request building ITKGPUThresholding (non-remote)
Module_ITKGPUThresholding:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKGoogleTest
Module_ITKGoogleTest-ADVANCED:INTERNAL=1
//Request building ITKGoogleTest (non-remote)
Module_ITKGoogleTest:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKHDF5
Module_ITKHDF5-ADVANCED:INTERNAL=1
//Request building ITKHDF5 (non-remote)
Module_ITKHDF5:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOBMP
Module_ITKIOBMP-ADVANCED:INTERNAL=1
//Request building ITKIOBMP (non-remote)
Module_ITKIOBMP:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOBioRad
Module_ITKIOBioRad-ADVANCED:INTERNAL=1
//Request building ITKIOBioRad (non-remote)
Module_ITKIOBioRad:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOBruker
Module_ITKIOBruker-ADVANCED:INTERNAL=1
//Request building ITKIOBruker (non-remote)
Module_ITKIOBruker:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOCSV
Module_ITKIOCSV-ADVANCED:INTERNAL=1
//Request building ITKIOCSV (non-remote)
Module_ITKIOCSV:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIODCMTK
Module_ITKIODCMTK-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Module_ITKIOGDCM
Module_ITKIOGDCM-ADVANCED:INTERNAL=1
//Request building ITKIOGDCM (non-remote)
Module_ITKIOGDCM:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOGE
Module_ITKIOGE-ADVANCED:INTERNAL=1
//Request building ITKIOGE (non-remote)
Module_ITKIOGE:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOGIPL
Module_ITKIOGIPL-ADVANCED:INTERNAL=1
//Request building ITKIOGIPL (non-remote)
Module_ITKIOGIPL:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOHDF5
Module_ITKIOHDF5-ADVANCED:INTERNAL=1
//Request building ITKIOHDF5 (non-remote)
Module_ITKIOHDF5:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOIPL
Module_ITKIOIPL-ADVANCED:INTERNAL=1
//Request building ITKIOIPL (non-remote)
Module_ITKIOIPL:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOImageBase
Module_ITKIOImageBase-ADVANCED:INTERNAL=1
//Request building ITKIOImageBase (non-remote)
Module_ITKIOImageBase:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOJPEG
Module_ITKIOJPEG-ADVANCED:INTERNAL=1
//Request building ITKIOJPEG (non-remote)
Module_ITKIOJPEG:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOJPEG2000
Module_ITKIOJPEG2000-ADVANCED:INTERNAL=1
//Request building ITKIOJPEG2000 (non-remote)
Module_ITKIOJPEG2000:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOLSM
Module_ITKIOLSM-ADVANCED:INTERNAL=1
//Request building ITKIOLSM (non-remote)
Module_ITKIOLSM:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOMINC
Module_ITKIOMINC-ADVANCED:INTERNAL=1
//Request building ITKIOMINC (non-remote)
Module_ITKIOMINC:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOMRC
Module_ITKIOMRC-ADVANCED:INTERNAL=1
//Request building ITKIOMRC (non-remote)
Module_ITKIOMRC:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOMesh
Module_ITKIOMesh-ADVANCED:INTERNAL=1
//Request building ITKIOMesh (non-remote)
Module_ITKIOMesh:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOMeshBYU
Module_ITKIOMeshBYU-ADVANCED:INTERNAL=1
//Request building ITKIOMeshBYU (non-remote)
Module_ITKIOMeshBYU:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOMeshBase
Module_ITKIOMeshBase-ADVANCED:INTERNAL=1
//Request building ITKIOMeshBase (non-remote)
Module_ITKIOMeshBase:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOMeshFreeSurfer
Module_ITKIOMeshFreeSurfer-ADVANCED:INTERNAL=1
//Request building ITKIOMeshFreeSurfer (non-remote)
Module_ITKIOMeshFreeSurfer:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOMeshGifti
Module_ITKIOMeshGifti-ADVANCED:INTERNAL=1
//Request building ITKIOMeshGifti (non-remote)
Module_ITKIOMeshGifti:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOMeshOBJ
Module_ITKIOMeshOBJ-ADVANCED:INTERNAL=1
//Request building ITKIOMeshOBJ (non-remote)
Module_ITKIOMeshOBJ:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOMeshOFF
Module_ITKIOMeshOFF-ADVANCED:INTERNAL=1
//Request building ITKIOMeshOFF (non-remote)
Module_ITKIOMeshOFF:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOMeshVTK
Module_ITKIOMeshVTK-ADVANCED:INTERNAL=1
//Request building ITKIOMeshVTK (non-remote)
Module_ITKIOMeshVTK:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOMeta
Module_ITKIOMeta-ADVANCED:INTERNAL=1
//Request building ITKIOMeta (non-remote)
Module_ITKIOMeta:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIONIFTI
Module_ITKIONIFTI-ADVANCED:INTERNAL=1
//Request building ITKIONIFTI (non-remote)
Module_ITKIONIFTI:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIONRRD
Module_ITKIONRRD-ADVANCED:INTERNAL=1
//Request building ITKIONRRD (non-remote)
Module_ITKIONRRD:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOPNG
Module_ITKIOPNG-ADVANCED:INTERNAL=1
//Request building ITKIOPNG (non-remote)
Module_ITKIOPNG:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOPhilipsREC
Module_ITKIOPhilipsREC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Module_ITKIORAW
Module_ITKIORAW-ADVANCED:INTERNAL=1
//Request building ITKIORAW (non-remote)
Module_ITKIORAW:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOSiemens
Module_ITKIOSiemens-ADVANCED:INTERNAL=1
//Request building ITKIOSiemens (non-remote)
Module_ITKIOSiemens:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOSpatialObjects
Module_ITKIOSpatialObjects-ADVANCED:INTERNAL=1
//Request building ITKIOSpatialObjects (non-remote)
Module_ITKIOSpatialObjects:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOStimulate
Module_ITKIOStimulate-ADVANCED:INTERNAL=1
//Request building ITKIOStimulate (non-remote)
Module_ITKIOStimulate:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOTIFF
Module_ITKIOTIFF-ADVANCED:INTERNAL=1
//Request building ITKIOTIFF (non-remote)
Module_ITKIOTIFF:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOTransformBase
Module_ITKIOTransformBase-ADVANCED:INTERNAL=1
//Request building ITKIOTransformBase (non-remote)
Module_ITKIOTransformBase:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOTransformHDF5
Module_ITKIOTransformHDF5-ADVANCED:INTERNAL=1
//Request building ITKIOTransformHDF5 (non-remote)
Module_ITKIOTransformHDF5:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOTransformInsightLegacy
Module_ITKIOTransformInsightLegacy-ADVANCED:INTERNAL=1
//Request building ITKIOTransformInsightLegacy (non-remote)
Module_ITKIOTransformInsightLegacy:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOTransformMINC
Module_ITKIOTransformMINC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Module_ITKIOTransformMatlab
Module_ITKIOTransformMatlab-ADVANCED:INTERNAL=1
//Request building ITKIOTransformMatlab (non-remote)
Module_ITKIOTransformMatlab:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOVTK
Module_ITKIOVTK-ADVANCED:INTERNAL=1
//Request building ITKIOVTK (non-remote)
Module_ITKIOVTK:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIOXML
Module_ITKIOXML-ADVANCED:INTERNAL=1
//Request building ITKIOXML (non-remote)
Module_ITKIOXML:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKImageAdaptors
Module_ITKImageAdaptors-ADVANCED:INTERNAL=1
//Request building ITKImageAdaptors (non-remote)
Module_ITKImageAdaptors:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKImageCompare
Module_ITKImageCompare-ADVANCED:INTERNAL=1
//Request building ITKImageCompare (non-remote)
Module_ITKImageCompare:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKImageCompose
Module_ITKImageCompose-ADVANCED:INTERNAL=1
//Request building ITKImageCompose (non-remote)
Module_ITKImageCompose:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKImageFeature
Module_ITKImageFeature-ADVANCED:INTERNAL=1
//Request building ITKImageFeature (non-remote)
Module_ITKImageFeature:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKImageFilterBase
Module_ITKImageFilterBase-ADVANCED:INTERNAL=1
//Request building ITKImageFilterBase (non-remote)
Module_ITKImageFilterBase:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKImageFrequency
Module_ITKImageFrequency-ADVANCED:INTERNAL=1
//Request building ITKImageFrequency (non-remote)
Module_ITKImageFrequency:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKImageFunction
Module_ITKImageFunction-ADVANCED:INTERNAL=1
//Request building ITKImageFunction (non-remote)
Module_ITKImageFunction:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKImageFusion
Module_ITKImageFusion-ADVANCED:INTERNAL=1
//Request building ITKImageFusion (non-remote)
Module_ITKImageFusion:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKImageGradient
Module_ITKImageGradient-ADVANCED:INTERNAL=1
//Request building ITKImageGradient (non-remote)
Module_ITKImageGradient:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKImageGrid
Module_ITKImageGrid-ADVANCED:INTERNAL=1
//Request building ITKImageGrid (non-remote)
Module_ITKImageGrid:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKImageIntensity
Module_ITKImageIntensity-ADVANCED:INTERNAL=1
//Request building ITKImageIntensity (non-remote)
Module_ITKImageIntensity:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKImageLabel
Module_ITKImageLabel-ADVANCED:INTERNAL=1
//Request building ITKImageLabel (non-remote)
Module_ITKImageLabel:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKImageNoise
Module_ITKImageNoise-ADVANCED:INTERNAL=1
//Request building ITKImageNoise (non-remote)
Module_ITKImageNoise:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKImageSources
Module_ITKImageSources-ADVANCED:INTERNAL=1
//Request building ITKImageSources (non-remote)
Module_ITKImageSources:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKImageStatistics
Module_ITKImageStatistics-ADVANCED:INTERNAL=1
//Request building ITKImageStatistics (non-remote)
Module_ITKImageStatistics:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKIntegratedTest
Module_ITKIntegratedTest-ADVANCED:INTERNAL=1
//Request building ITKIntegratedTest (non-remote)
Module_ITKIntegratedTest:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKJPEG
Module_ITKJPEG-ADVANCED:INTERNAL=1
//Request building ITKJPEG (non-remote)
Module_ITKJPEG:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKKLMRegionGrowing
Module_ITKKLMRegionGrowing-ADVANCED:INTERNAL=1
//Request building ITKKLMRegionGrowing (non-remote)
Module_ITKKLMRegionGrowing:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKKWIML
Module_ITKKWIML-ADVANCED:INTERNAL=1
//Request building ITKKWIML (non-remote)
Module_ITKKWIML:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKKWSys
Module_ITKKWSys-ADVANCED:INTERNAL=1
//Request building ITKKWSys (non-remote)
Module_ITKKWSys:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKLIBLBFGS
Module_ITKLIBLBFGS-ADVANCED:INTERNAL=1
//Request building ITKLIBLBFGS (non-remote)
Module_ITKLIBLBFGS:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKLabelMap
Module_ITKLabelMap-ADVANCED:INTERNAL=1
//Request building ITKLabelMap (non-remote)
Module_ITKLabelMap:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKLabelVoting
Module_ITKLabelVoting-ADVANCED:INTERNAL=1
//Request building ITKLabelVoting (non-remote)
Module_ITKLabelVoting:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKLevelSets
Module_ITKLevelSets-ADVANCED:INTERNAL=1
//Request building ITKLevelSets (non-remote)
Module_ITKLevelSets:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKLevelSetsv4
Module_ITKLevelSetsv4-ADVANCED:INTERNAL=1
//Request building ITKLevelSetsv4 (non-remote)
Module_ITKLevelSetsv4:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKMINC
Module_ITKMINC-ADVANCED:INTERNAL=1
//Request building ITKMINC (non-remote)
Module_ITKMINC:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKMarkovRandomFieldsClassifiers
Module_ITKMarkovRandomFieldsClassifiers-ADVANCED:INTERNAL=1
//Request building ITKMarkovRandomFieldsClassifiers (non-remote)
Module_ITKMarkovRandomFieldsClassifiers:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKMathematicalMorphology
Module_ITKMathematicalMorphology-ADVANCED:INTERNAL=1
//Request building ITKMathematicalMorphology (non-remote)
Module_ITKMathematicalMorphology:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKMesh
Module_ITKMesh-ADVANCED:INTERNAL=1
//Request building ITKMesh (non-remote)
Module_ITKMesh:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKMetaIO
Module_ITKMetaIO-ADVANCED:INTERNAL=1
//Request building ITKMetaIO (non-remote)
Module_ITKMetaIO:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKMetricsv4
Module_ITKMetricsv4-ADVANCED:INTERNAL=1
//Request building ITKMetricsv4 (non-remote)
Module_ITKMetricsv4:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKNIFTI
Module_ITKNIFTI-ADVANCED:INTERNAL=1
//Request building ITKNIFTI (non-remote)
Module_ITKNIFTI:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKNarrowBand
Module_ITKNarrowBand-ADVANCED:INTERNAL=1
//Request building ITKNarrowBand (non-remote)
Module_ITKNarrowBand:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKNetlib
Module_ITKNetlib-ADVANCED:INTERNAL=1
//Request building ITKNetlib (non-remote)
Module_ITKNetlib:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKNrrdIO
Module_ITKNrrdIO-ADVANCED:INTERNAL=1
//Request building ITKNrrdIO (non-remote)
Module_ITKNrrdIO:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKOpenJPEG
Module_ITKOpenJPEG-ADVANCED:INTERNAL=1
//Request building ITKOpenJPEG (non-remote)
Module_ITKOpenJPEG:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKOptimizers
Module_ITKOptimizers-ADVANCED:INTERNAL=1
//Request building ITKOptimizers (non-remote)
Module_ITKOptimizers:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKOptimizersv4
Module_ITKOptimizersv4-ADVANCED:INTERNAL=1
//Request building ITKOptimizersv4 (non-remote)
Module_ITKOptimizersv4:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKPDEDeformableRegistration
Module_ITKPDEDeformableRegistration-ADVANCED:INTERNAL=1
//Request building ITKPDEDeformableRegistration (non-remote)
Module_ITKPDEDeformableRegistration:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKPNG
Module_ITKPNG-ADVANCED:INTERNAL=1
//Request building ITKPNG (non-remote)
Module_ITKPNG:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKPath
Module_ITKPath-ADVANCED:INTERNAL=1
//Request building ITKPath (non-remote)
Module_ITKPath:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKPolynomials
Module_ITKPolynomials-ADVANCED:INTERNAL=1
//Request building ITKPolynomials (non-remote)
Module_ITKPolynomials:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKQuadEdgeMesh
Module_ITKQuadEdgeMesh-ADVANCED:INTERNAL=1
//Request building ITKQuadEdgeMesh (non-remote)
Module_ITKQuadEdgeMesh:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKQuadEdgeMeshFiltering
Module_ITKQuadEdgeMeshFiltering-ADVANCED:INTERNAL=1
//Request building ITKQuadEdgeMeshFiltering (non-remote)
Module_ITKQuadEdgeMeshFiltering:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKRegionGrowing
Module_ITKRegionGrowing-ADVANCED:INTERNAL=1
//Request building ITKRegionGrowing (non-remote)
Module_ITKRegionGrowing:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKRegistrationCommon
Module_ITKRegistrationCommon-ADVANCED:INTERNAL=1
//Request building ITKRegistrationCommon (non-remote)
Module_ITKRegistrationCommon:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKRegistrationMethodsv4
Module_ITKRegistrationMethodsv4-ADVANCED:INTERNAL=1
//Request building ITKRegistrationMethodsv4 (non-remote)
Module_ITKRegistrationMethodsv4:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKReview
Module_ITKReview-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Module_ITKSignedDistanceFunction
Module_ITKSignedDistanceFunction-ADVANCED:INTERNAL=1
//Request building ITKSignedDistanceFunction (non-remote)
Module_ITKSignedDistanceFunction:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKSmoothing
Module_ITKSmoothing-ADVANCED:INTERNAL=1
//Request building ITKSmoothing (non-remote)
Module_ITKSmoothing:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKSpatialFunction
Module_ITKSpatialFunction-ADVANCED:INTERNAL=1
//Request building ITKSpatialFunction (non-remote)
Module_ITKSpatialFunction:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKSpatialObjects
Module_ITKSpatialObjects-ADVANCED:INTERNAL=1
//Request building ITKSpatialObjects (non-remote)
Module_ITKSpatialObjects:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKStatistics
Module_ITKStatistics-ADVANCED:INTERNAL=1
//Request building ITKStatistics (non-remote)
Module_ITKStatistics:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKSuperPixel
Module_ITKSuperPixel-ADVANCED:INTERNAL=1
//Request building ITKSuperPixel (non-remote)
Module_ITKSuperPixel:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKTBB
Module_ITKTBB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Module_ITKTIFF
Module_ITKTIFF-ADVANCED:INTERNAL=1
//Request building ITKTIFF (non-remote)
Module_ITKTIFF:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKTestKernel
Module_ITKTestKernel-ADVANCED:INTERNAL=1
//Request building ITKTestKernel (non-remote)
Module_ITKTestKernel:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKThresholding
Module_ITKThresholding-ADVANCED:INTERNAL=1
//Request building ITKThresholding (non-remote)
Module_ITKThresholding:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKTransform
Module_ITKTransform-ADVANCED:INTERNAL=1
//Request building ITKTransform (non-remote)
Module_ITKTransform:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKTransformFactory
Module_ITKTransformFactory-ADVANCED:INTERNAL=1
//Request building ITKTransformFactory (non-remote)
Module_ITKTransformFactory:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKVNL
Module_ITKVNL-ADVANCED:INTERNAL=1
//Request building ITKVNL (non-remote)
Module_ITKVNL:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKVNLInstantiation
Module_ITKVNLInstantiation-ADVANCED:INTERNAL=1
//Request building ITKVNLInstantiation (non-remote)
Module_ITKVNLInstantiation:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKVTK
Module_ITKVTK-ADVANCED:INTERNAL=1
//Request building ITKVTK (non-remote)
Module_ITKVTK:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKVideoBridgeOpenCV
Module_ITKVideoBridgeOpenCV-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Module_ITKVideoBridgeVXL
Module_ITKVideoBridgeVXL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Module_ITKVideoCore
Module_ITKVideoCore-ADVANCED:INTERNAL=1
//Request building ITKVideoCore (non-remote)
Module_ITKVideoCore:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKVideoFiltering
Module_ITKVideoFiltering-ADVANCED:INTERNAL=1
//Request building ITKVideoFiltering (non-remote)
Module_ITKVideoFiltering:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKVideoIO
Module_ITKVideoIO-ADVANCED:INTERNAL=1
//Request building ITKVideoIO (non-remote)
Module_ITKVideoIO:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKVoronoi
Module_ITKVoronoi-ADVANCED:INTERNAL=1
//Request building ITKVoronoi (non-remote)
Module_ITKVoronoi:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKVtkGlue
Module_ITKVtkGlue-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Module_ITKWatersheds
Module_ITKWatersheds-ADVANCED:INTERNAL=1
//Request building ITKWatersheds (non-remote)
Module_ITKWatersheds:INTERNAL=OFF
//ADVANCED property for variable: Module_ITKZLIB
Module_ITKZLIB-ADVANCED:INTERNAL=1
//Request building ITKZLIB (non-remote)
Module_ITKZLIB:INTERNAL=OFF
//ADVANCED property for variable: Module_IsotropicWavelets
Module_IsotropicWavelets-ADVANCED:INTERNAL=1
//Variable to indicate the Module_IsotropicWavelets compliance
// level
Module_IsotropicWavelets_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_LabelErodeDilate
Module_LabelErodeDilate-ADVANCED:INTERNAL=1
//Variable to indicate the Module_LabelErodeDilate compliance level
Module_LabelErodeDilate_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_LesionSizingToolkit
Module_LesionSizingToolkit-ADVANCED:INTERNAL=1
//Variable to indicate the Module_LesionSizingToolkit compliance
// level
Module_LesionSizingToolkit_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_MGHIO
Module_MGHIO-ADVANCED:INTERNAL=1
//Variable to indicate the Module_MGHIO compliance level
Module_MGHIO_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_MeshNoise
Module_MeshNoise-ADVANCED:INTERNAL=1
//Variable to indicate the Module_MeshNoise compliance level
Module_MeshNoise_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_MinimalPathExtraction
Module_MinimalPathExtraction-ADVANCED:INTERNAL=1
//Variable to indicate the Module_MinimalPathExtraction compliance
// level
Module_MinimalPathExtraction_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_Montage
Module_Montage-ADVANCED:INTERNAL=0
//Variable to indicate the Module_Montage compliance level
Module_Montage_REMOTE_COMPLIANCE_LEVEL:INTERNAL=3
//ADVANCED property for variable: Module_MorphologicalContourInterpolation
Module_MorphologicalContourInterpolation-ADVANCED:INTERNAL=0
//Variable to indicate the Module_MorphologicalContourInterpolation
// compliance level
Module_MorphologicalContourInterpolation_REMOTE_COMPLIANCE_LEVEL:INTERNAL=3
//ADVANCED property for variable: Module_MultipleImageIterator
Module_MultipleImageIterator-ADVANCED:INTERNAL=1
//Variable to indicate the Module_MultipleImageIterator compliance
// level
Module_MultipleImageIterator_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_ParabolicMorphology
Module_ParabolicMorphology-ADVANCED:INTERNAL=1
//Variable to indicate the Module_ParabolicMorphology compliance
// level
Module_ParabolicMorphology_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_PerformanceBenchmarking
Module_PerformanceBenchmarking-ADVANCED:INTERNAL=1
//Variable to indicate the Module_PerformanceBenchmarking compliance
// level
Module_PerformanceBenchmarking_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_PhaseSymmetry
Module_PhaseSymmetry-ADVANCED:INTERNAL=1
//Variable to indicate the Module_PhaseSymmetry compliance level
Module_PhaseSymmetry_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_PolarTransform
Module_PolarTransform-ADVANCED:INTERNAL=1
//Variable to indicate the Module_PolarTransform compliance level
Module_PolarTransform_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_PrincipalComponentsAnalysis
Module_PrincipalComponentsAnalysis-ADVANCED:INTERNAL=1
//Variable to indicate the Module_PrincipalComponentsAnalysis compliance
// level
Module_PrincipalComponentsAnalysis_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_RLEImage
Module_RLEImage-ADVANCED:INTERNAL=0
//Variable to indicate the Module_RLEImage compliance level
Module_RLEImage_REMOTE_COMPLIANCE_LEVEL:INTERNAL=3
//ADVANCED property for variable: Module_RTK
Module_RTK-ADVANCED:INTERNAL=0
//Variable to indicate the Module_RTK compliance level
Module_RTK_REMOTE_COMPLIANCE_LEVEL:INTERNAL=3
//ADVANCED property for variable: Module_SCIFIO
Module_SCIFIO-ADVANCED:INTERNAL=1
//Variable to indicate the Module_SCIFIO compliance level
Module_SCIFIO_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_SimpleITKFilters
Module_SimpleITKFilters-ADVANCED:INTERNAL=0
//Variable to indicate the Module_SimpleITKFilters compliance level
Module_SimpleITKFilters_REMOTE_COMPLIANCE_LEVEL:INTERNAL=3
//ADVANCED property for variable: Module_SkullStrip
Module_SkullStrip-ADVANCED:INTERNAL=1
//Variable to indicate the Module_SkullStrip compliance level
Module_SkullStrip_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_SmoothingRecursiveYvvGaussianFilter
Module_SmoothingRecursiveYvvGaussianFilter-ADVANCED:INTERNAL=1
//Variable to indicate the Module_SmoothingRecursiveYvvGaussianFilter
// compliance level
Module_SmoothingRecursiveYvvGaussianFilter_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_SphinxExamples
Module_SphinxExamples-ADVANCED:INTERNAL=0
//Variable to indicate the Module_SphinxExamples compliance level
Module_SphinxExamples_REMOTE_COMPLIANCE_LEVEL:INTERNAL=5
//ADVANCED property for variable: Module_SplitComponents
Module_SplitComponents-ADVANCED:INTERNAL=1
//Variable to indicate the Module_SplitComponents compliance level
Module_SplitComponents_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_Strain
Module_Strain-ADVANCED:INTERNAL=1
//Variable to indicate the Module_Strain compliance level
Module_Strain_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_SubdivisionQuadEdgeMeshFilter
Module_SubdivisionQuadEdgeMeshFilter-ADVANCED:INTERNAL=1
//Variable to indicate the Module_SubdivisionQuadEdgeMeshFilter
// compliance level
Module_SubdivisionQuadEdgeMeshFilter_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_TextureFeatures
Module_TextureFeatures-ADVANCED:INTERNAL=1
//Variable to indicate the Module_TextureFeatures compliance level
Module_TextureFeatures_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_Thickness3D
Module_Thickness3D-ADVANCED:INTERNAL=1
//Variable to indicate the Module_Thickness3D compliance level
Module_Thickness3D_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_TotalVariation
Module_TotalVariation-ADVANCED:INTERNAL=1
//Variable to indicate the Module_TotalVariation compliance level
Module_TotalVariation_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_TubeTK
Module_TubeTK-ADVANCED:INTERNAL=0
//Variable to indicate the Module_TubeTK compliance level
Module_TubeTK_REMOTE_COMPLIANCE_LEVEL:INTERNAL=3
//ADVANCED property for variable: Module_TwoProjectionRegistration
Module_TwoProjectionRegistration-ADVANCED:INTERNAL=1
//Variable to indicate the Module_TwoProjectionRegistration compliance
// level
Module_TwoProjectionRegistration_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: Module_VariationalRegistration
Module_VariationalRegistration-ADVANCED:INTERNAL=1
//Variable to indicate the Module_VariationalRegistration compliance
// level
Module_VariationalRegistration_REMOTE_COMPLIANCE_LEVEL:INTERNAL=2
//ADVANCED property for variable: NIFTI_BUILD_APPLICATIONS
NIFTI_BUILD_APPLICATIONS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: NIFTI_USE_PACKAGING
NIFTI_USE_PACKAGING-ADVANCED:INTERNAL=1
//CXX test 
NO_STATIC_CAST:INTERNAL=
//CHECK_TYPE_SIZE: off64_t unknown
OFF64_T:INTERNAL=
//CXX test 
OLD_HEADER_FILENAME:INTERNAL=
//ADVANCED property for variable: OPENCL_INCLUDE_DIRS
OPENCL_INCLUDE_DIRS-ADVANCED:INTERNAL=1
//Result of TEST_BIG_ENDIAN
OPJ_BIG_ENDIAN:INTERNAL=0
//ADVANCED property for variable: OPJ_DISABLE_TPSOT_FIX
OPJ_DISABLE_TPSOT_FIX-ADVANCED:INTERNAL=1
//Result of test for fseeko/ftello
OPJ_HAVE_FSEEKO:INTERNAL=OFF
//Have include inttypes.h
OPJ_HAVE_INTTYPES_H:INTERNAL=1
//Result of test for large file support
OPJ_HAVE_LARGEFILES:INTERNAL=OFF
//Have include malloc.h
OPJ_HAVE_MALLOC_H:INTERNAL=1
//Have symbol memalign
OPJ_HAVE_MEMALIGN:INTERNAL=
//Have symbol posix_memalign
OPJ_HAVE_POSIX_MEMALIGN:INTERNAL=
//Have include stdint.h
OPJ_HAVE_STDINT_H:INTERNAL=1
//Have symbol _aligned_malloc
OPJ_HAVE__ALIGNED_MALLOC:INTERNAL=1
//ADVANCED property for variable: OPJ_USE_THREAD
OPJ_USE_THREAD-ADVANCED:INTERNAL=1
PC_EXPAT_CFLAGS:INTERNAL=
PC_EXPAT_CFLAGS_I:INTERNAL=
PC_EXPAT_CFLAGS_OTHER:INTERNAL=
PC_EXPAT_FOUND:INTERNAL=
PC_EXPAT_INCLUDEDIR:INTERNAL=
PC_EXPAT_LIBDIR:INTERNAL=
PC_EXPAT_LIBS:INTERNAL=
PC_EXPAT_LIBS_L:INTERNAL=
PC_EXPAT_LIBS_OTHER:INTERNAL=
PC_EXPAT_LIBS_PATHS:INTERNAL=
PC_EXPAT_MODULE_NAME:INTERNAL=
PC_EXPAT_PREFIX:INTERNAL=
PC_EXPAT_STATIC_CFLAGS:INTERNAL=
PC_EXPAT_STATIC_CFLAGS_I:INTERNAL=
PC_EXPAT_STATIC_CFLAGS_OTHER:INTERNAL=
PC_EXPAT_STATIC_LIBDIR:INTERNAL=
PC_EXPAT_STATIC_LIBS:INTERNAL=
PC_EXPAT_STATIC_LIBS_L:INTERNAL=
PC_EXPAT_STATIC_LIBS_OTHER:INTERNAL=
PC_EXPAT_STATIC_LIBS_PATHS:INTERNAL=
PC_EXPAT_VERSION:INTERNAL=
//ADVANCED property for variable: PERL_EXECUTABLE
PERL_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE
PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
//The 22nd bit of 32-bit floating-point quiet NaN.
QNANHIBIT:INTERNAL=1
//Result of TRY_RUN
QNANHIBIT_VALUE:INTERNAL=1
//CHECK_TYPE_SIZE: sizeof(int)
SIZEOF_INT:INTERNAL=4
//CHECK_TYPE_SIZE: sizeof(long)
SIZEOF_LONG:INTERNAL=4
//Have function strsignal
SOCKETXX_HAVE_STRSIGNAL:INTERNAL=
//Result of TRY_COMPILE
STDC_HEADERS:INTERNAL=TRUE
//ADVANCED property for variable: TESTLIB_VCL_WHERE_ROOT_DIR_H
TESTLIB_VCL_WHERE_ROOT_DIR_H-ADVANCED:INTERNAL=1
//ADVANCED property for variable: USE_CIFTI_CODE
USE_CIFTI_CODE-ADVANCED:INTERNAL=1
//Build the cifti library and tools
USE_CIFTI_CODE:INTERNAL=OFF
//ADVANCED property for variable: USE_FSL_CODE
USE_FSL_CODE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: USE_NIFTI2_CODE
USE_NIFTI2_CODE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: USE_NIFTICDF_CODE
USE_NIFTICDF_CODE-ADVANCED:INTERNAL=1
//Have includes dlfcn.h
VCL_HAS_DLFCN_H:INTERNAL=
//Have include fcntl.h
VCL_HAS_FCNTL_H:INTERNAL=1
//Have include assert.h
VCL_HAS_HEADER_ASSERT_H:INTERNAL=1
//Have include inttypes.h
VCL_HAS_INTTYPES_H:INTERNAL=1
//VXL test  (successful run)
VCL_HAS_LFS:INTERNAL=1
//Result of TRY_COMPILE
VCL_HAS_LFS_COMPILED:INTERNAL=TRUE
//Have include limits.h
VCL_HAS_LIMITS_H:INTERNAL=1
//Have include malloc.h
VCL_HAS_MALLOC_H:INTERNAL=1
//Have include memory.h
VCL_HAS_MEMORY_H:INTERNAL=1
//Have include search.h
VCL_HAS_SEARCH_H:INTERNAL=1
//Have include stdint.h
VCL_HAS_STDINT_H:INTERNAL=1
//Have include stdlib.h
VCL_HAS_STDLIB_H:INTERNAL=1
//Have includes strings.h
VCL_HAS_STRINGS_H:INTERNAL=
//Have include string.h
VCL_HAS_STRING_H:INTERNAL=1
//Have include sys/stat.h
VCL_HAS_SYS_STAT_H:INTERNAL=1
//Have includes sys/times.h
VCL_HAS_SYS_TIME_H:INTERNAL=
//Have include sys/types.h
VCL_HAS_SYS_TYPES_H:INTERNAL=1
//Have includes unistd.h
VCL_HAS_UNISTD_H:INTERNAL=
//ADVANCED property for variable: VNL_CONFIG_CHECK_BOUNDS
VNL_CONFIG_CHECK_BOUNDS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VNL_CONFIG_ENABLE_SSE2
VNL_CONFIG_ENABLE_SSE2-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VNL_CONFIG_ENABLE_SSE2_ROUNDING
VNL_CONFIG_ENABLE_SSE2_ROUNDING-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VNL_CONFIG_LEGACY_METHODS
VNL_CONFIG_LEGACY_METHODS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VNL_CONFIG_THREAD_SAFE
VNL_CONFIG_THREAD_SAFE-ADVANCED:INTERNAL=1
//Result of TEST_BIG_ENDIAN
VXL_BIG_ENDIAN:INTERNAL=0
//ADVANCED property for variable: VXL_BUILD_CONTRIB
VXL_BUILD_CONTRIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_BUILD_CORE_GEOMETRY
VXL_BUILD_CORE_GEOMETRY-ADVANCED:INTERNAL=1
//Build VXL's geometry libraries
VXL_BUILD_CORE_GEOMETRY:INTERNAL=OFF
//ADVANCED property for variable: VXL_BUILD_CORE_IMAGING
VXL_BUILD_CORE_IMAGING-ADVANCED:INTERNAL=1
//Build VXL's imaging libraries
VXL_BUILD_CORE_IMAGING:INTERNAL=OFF
//ADVANCED property for variable: VXL_BUILD_CORE_NUMERICS
VXL_BUILD_CORE_NUMERICS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_BUILD_CORE_NUMERICS_ONLY
VXL_BUILD_CORE_NUMERICS_ONLY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_BUILD_CORE_SERIALISATION
VXL_BUILD_CORE_SERIALISATION-ADVANCED:INTERNAL=1
//Build VXL's serialisation libraries
VXL_BUILD_CORE_SERIALISATION:INTERNAL=OFF
//ADVANCED property for variable: VXL_BUILD_CORE_UTILITIES
VXL_BUILD_CORE_UTILITIES-ADVANCED:INTERNAL=1
//Build VXL's utility libraries
VXL_BUILD_CORE_UTILITIES:INTERNAL=OFF
//ADVANCED property for variable: VXL_BUILD_CORE_VIDEO
VXL_BUILD_CORE_VIDEO-ADVANCED:INTERNAL=1
//Build VXL's core video libraries
VXL_BUILD_CORE_VIDEO:INTERNAL=OFF
//ADVANCED property for variable: VXL_BUILD_DOCUMENTATION
VXL_BUILD_DOCUMENTATION-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_BUILD_EXAMPLES
VXL_BUILD_EXAMPLES-ADVANCED:INTERNAL=1
//Should the examples be built?
VXL_BUILD_EXAMPLES:INTERNAL=OFF
//ADVANCED property for variable: VXL_BUILD_NONDEPRECATED_ONLY
VXL_BUILD_NONDEPRECATED_ONLY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_BUILD_OBJECT_LIBRARIES
VXL_BUILD_OBJECT_LIBRARIES-ADVANCED:INTERNAL=1
//VXL test result char
VXL_BYTE:INTERNAL=char
//Serial number of last configuration
VXL_CONFIG_SERIAL_LAST:INTERNAL=2014-12-09-002
//ADVANCED property for variable: VXL_EXTRA_CMAKE_CXX_FLAGS
VXL_EXTRA_CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_EXTRA_CMAKE_C_FLAGS
VXL_EXTRA_CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_EXTRA_CMAKE_EXE_LINKER_FLAGS
VXL_EXTRA_CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_EXTRA_CMAKE_MODULE_LINKER_FLAGS
VXL_EXTRA_CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_EXTRA_CMAKE_SHARED_LINKER_FLAGS
VXL_EXTRA_CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_FORCE_B3P_EXPAT
VXL_FORCE_B3P_EXPAT-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_FORCE_B3P_SHAPELIB
VXL_FORCE_B3P_SHAPELIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_FORCE_V3P_BZLIB2
VXL_FORCE_V3P_BZLIB2-ADVANCED:INTERNAL=1
//Use V3P instead of any native BZip2 library?
VXL_FORCE_V3P_BZLIB2:INTERNAL=OFF
//ADVANCED property for variable: VXL_FORCE_V3P_CLIPPER
VXL_FORCE_V3P_CLIPPER-ADVANCED:INTERNAL=1
//Use V3P instead of any native Clipper library?
VXL_FORCE_V3P_CLIPPER:INTERNAL=OFF
//ADVANCED property for variable: VXL_FORCE_V3P_DCMTK
VXL_FORCE_V3P_DCMTK-ADVANCED:INTERNAL=1
//Use V3P instead of any native DCMTK library?
VXL_FORCE_V3P_DCMTK:INTERNAL=OFF
//ADVANCED property for variable: VXL_FORCE_V3P_GEOTIFF
VXL_FORCE_V3P_GEOTIFF-ADVANCED:INTERNAL=1
//Use V3P instead of any native GEOTIFF library?
VXL_FORCE_V3P_GEOTIFF:INTERNAL=OFF
//ADVANCED property for variable: VXL_FORCE_V3P_J2K
VXL_FORCE_V3P_J2K-ADVANCED:INTERNAL=1
//Use V3P instead of any native JPEG2000 library? (WIN32 only)
VXL_FORCE_V3P_J2K:INTERNAL=OFF
//ADVANCED property for variable: VXL_FORCE_V3P_JPEG
VXL_FORCE_V3P_JPEG-ADVANCED:INTERNAL=1
//Use V3P instead of any native JPEG library?
VXL_FORCE_V3P_JPEG:INTERNAL=OFF
//ADVANCED property for variable: VXL_FORCE_V3P_OPENJPEG2
VXL_FORCE_V3P_OPENJPEG2-ADVANCED:INTERNAL=1
//Use V3P instead of any native OpenJPEG v2 library?
VXL_FORCE_V3P_OPENJPEG2:INTERNAL=OFF
//ADVANCED property for variable: VXL_FORCE_V3P_PNG
VXL_FORCE_V3P_PNG-ADVANCED:INTERNAL=1
//Use V3P instead of any native PNG library?
VXL_FORCE_V3P_PNG:INTERNAL=OFF
//ADVANCED property for variable: VXL_FORCE_V3P_TIFF
VXL_FORCE_V3P_TIFF-ADVANCED:INTERNAL=1
//Use V3P instead of any native TIFF library?
VXL_FORCE_V3P_TIFF:INTERNAL=OFF
//ADVANCED property for variable: VXL_FORCE_V3P_ZLIB
VXL_FORCE_V3P_ZLIB-ADVANCED:INTERNAL=1
//Use V3P instead of any native ZLIB library?
VXL_FORCE_V3P_ZLIB:INTERNAL=OFF
//VXL test 
VXL_HAS_ALIGNED_MALLOC:INTERNAL=1
//VXL test result char
VXL_HAS_BYTE:INTERNAL=1
//VXL test 
VXL_HAS_DBGHELP_H:INTERNAL=1
//Have include emmintrin.h
VXL_HAS_EMMINTRIN_H:INTERNAL=1
//VXL test result void
VXL_HAS_IEEE_128:INTERNAL=0
//VXL test result float
VXL_HAS_IEEE_32:INTERNAL=1
//VXL test result double
VXL_HAS_IEEE_64:INTERNAL=1
//VXL test result void
VXL_HAS_IEEE_96:INTERNAL=0
//VXL test result short
VXL_HAS_INT_16:INTERNAL=1
//VXL test result int
VXL_HAS_INT_32:INTERNAL=1
//VXL test result long long
VXL_HAS_INT_64:INTERNAL=1
//VXL test result char
VXL_HAS_INT_8:INTERNAL=1
//Test 
VXL_HAS_MINGW_ALIGNED_MALLOC:INTERNAL=0
//VXL test 
VXL_HAS_MM_MALLOC:INTERNAL=1
//Test 
VXL_HAS_POSIX_MEMALIGN:INTERNAL=0
//Have includes pthread.h
VXL_HAS_PTHREAD_H:INTERNAL=
//Have includes semaphore.h
VXL_HAS_SEMAPHORE_H:INTERNAL=
//VXL test  (successful run)
VXL_HAS_SSE2_HARDWARE_SUPPORT:INTERNAL=1
//Result of TRY_COMPILE
VXL_HAS_SSE2_HARDWARE_SUPPORT_COMPILED:INTERNAL=TRUE
//VXL test 
VXL_HAS_WIN_WCHAR_T:INTERNAL=1
//VXL test result void
VXL_IEEE_128:INTERNAL=void
//VXL test result float
VXL_IEEE_32:INTERNAL=float
//VXL test result double
VXL_IEEE_64:INTERNAL=double
//VXL test result void
VXL_IEEE_96:INTERNAL=void
//VXL test result short
VXL_INT_16:INTERNAL=short
//VXL test result int
VXL_INT_32:INTERNAL=int
//VXL test result long long
VXL_INT_64:INTERNAL=long long
//VXL test result char
VXL_INT_8:INTERNAL=char
//ADVANCED property for variable: VXL_LEGACY_FUTURE_REMOVE
VXL_LEGACY_FUTURE_REMOVE-ADVANCED:INTERNAL=1
//Result of TRY_COMPILE
VXL_MIN_CXX_LEVEL_TEST:INTERNAL=FALSE
//ADVANCED property for variable: VXL_NO_EXPORT
VXL_NO_EXPORT-ADVANCED:INTERNAL=1
//VXL test 
VXL_PIC_COMPATIBLE:INTERNAL=1
//ADVANCED property for variable: VXL_RUN_FAILING_TESTS
VXL_RUN_FAILING_TESTS-ADVANCED:INTERNAL=1
//Test 
VXL_UNISTD_USLEEP_IS_VOID:INTERNAL=0
//ADVANCED property for variable: VXL_UPDATE_CONFIGURATION
VXL_UPDATE_CONFIGURATION-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_USE_GEOTIFF
VXL_USE_GEOTIFF-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_USE_HISTORICAL_IMPLICIT_CONVERSIONS
VXL_USE_HISTORICAL_IMPLICIT_CONVERSIONS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_USE_HISTORICAL_PROTECTED_IVARS
VXL_USE_HISTORICAL_PROTECTED_IVARS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: VXL_USE_LFS
VXL_USE_LFS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: WARN_DEPRECATED
WARN_DEPRECATED-ADVANCED:INTERNAL=1
//ADVANCED property for variable: WARN_DEPRECATED_ABORT
WARN_DEPRECATED_ABORT-ADVANCED:INTERNAL=1
//ADVANCED property for variable: WARN_DEPRECATED_ONCE
WARN_DEPRECATED_ONCE-ADVANCED:INTERNAL=1
//Result of TEST_BIG_ENDIAN
WORDS_BIGENDIAN:INTERNAL=0
//Have include unistd.h
Z_HAVE_UNISTD_H:INTERNAL=
//Result of test for needed _FILE_OFFSET_BITS=64
_FILE_OFFSET_BITS:INTERNAL=
//CMAKE_INSTALL_PREFIX during last run
_GNUInstallDirs_LAST_CMAKE_INSTALL_PREFIX:INTERNAL=C:/Program Files (x86)/ITK
//Result of test for needed _LARGEFILE_SOURCE
_LARGEFILE_SOURCE:INTERNAL=
//Result of test for needed _LARGE_FILES
_LARGE_FILES:INTERNAL=
__pkg_config_checked_PC_EXPAT:INTERNAL=1
//Result of TRY_COMPILE
_using_libcxx:INTERNAL=FALSE
generated_dir:INTERNAL=E:/InsightToolkit-5.1.0/build/vs2019/x64/Modules/ThirdParty/GoogleTest/src/GTest-build/googletest/generated
//ADVANCED property for variable: gtest_build_samples
gtest_build_samples-ADVANCED:INTERNAL=1
//ADVANCED property for variable: gtest_build_tests
gtest_build_tests-ADVANCED:INTERNAL=1
//ADVANCED property for variable: gtest_disable_pthreads
gtest_disable_pthreads-ADVANCED:INTERNAL=1
//Disable uses of pthreads in gtest.
gtest_disable_pthreads:INTERNAL=ON
//ADVANCED property for variable: gtest_force_shared_crt
gtest_force_shared_crt-ADVANCED:INTERNAL=1
//Use shared (DLL) run-time lib even when Google Test is built
// as static lib.
gtest_force_shared_crt:INTERNAL=ON
//ADVANCED property for variable: gtest_hide_internal_symbols
gtest_hide_internal_symbols-ADVANCED:INTERNAL=1
//Test have_avx2_extensions_var
have_avx2_extensions_var:INTERNAL=1
//Result of TRY_COMPILE
have_avx2_extensions_var_COMPILED:INTERNAL=TRUE
//Result of TRY_RUN
have_avx2_extensions_var_EXITCODE:INTERNAL=0
//Test have_avx_extensions_var
have_avx_extensions_var:INTERNAL=1
//Result of TRY_COMPILE
have_avx_extensions_var_COMPILED:INTERNAL=TRUE
//Result of TRY_RUN
have_avx_extensions_var_EXITCODE:INTERNAL=0
targets_export_name:INTERNAL=GTestTargets

@dzenanz
Copy link
Member

dzenanz commented Jun 23, 2020

The content of (the relevant part of) your project's CMakeLists.txt would be more important. This might be related to strongly typed enumerations change. Also it makes sense trying master to see if it has been fixed recently.

@chacha21
Copy link
Contributor Author

chacha21 commented Jun 23, 2020

Just checked, the bug is still present in current master
My project does not use CMake, it is a native VS 2019 project, and does not have CMakeList. It uses the build of ITK matching the CMakeCache.txt I attached.

(I used https://itk.org/Wiki/ITK/Using_ITK_Without_CMake and have to manually call itk::MetaImageIOFactory::RegisterOneFactory(), but it is fine)

@dzenanz
Copy link
Member

dzenanz commented Jun 23, 2020

You might want to regenerate your copy-pasted list of libraries using the most recent build of an example project which does use CMake.

@chacha21
Copy link
Contributor Author

Thanks for the hint, but I won't have time to do that in a near future, so I won't have feedback on that point. I forgot to mention that there was no problem with ITK 5.0.1, that's why I am confident with the good shape of my project.

The idea of a change in strongly typed enumerations might be a clue.

@chacha21
Copy link
Contributor Author

My fault : I misinterpreted the whole thing.
That was a missed dependency to ITKSmoothing

@csparker247
Copy link

csparker247 commented Oct 15, 2020

I just hit this same issue when upgrading from 5.0.1 to 5.1, only in my circumstance, I'm using itkMattesMutualInformationImageToImageMetric.h. Minimum replicable example:

# CMakeLists.txt
cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
project(link-fails)

find_package(ITK REQUIRED)
include(${ITK_USE_FILE})

add_executable(link-fails main.cpp)
target_link_libraries(link-fails
    ITKCommon
    ITKTransform
    ITKOptimizers
)
// main.cpp
#include <itkImage.h>
#include <itkMattesMutualInformationImageToImageMetric.h>

int main() {
  using Image = itk::Image<uint8_t, 2>;
  using Metric = itk::MattesMutualInformationImageToImageMetric<Image, Image>;
  auto metric = Metric::New();
}

This compiles fine against 5.0.1, but fails with 5.1 during linking:

Undefined symbols for architecture x86_64:
  "itk::operator<<(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, itk::RecursiveGaussianImageFilterEnums::GaussianOrder)", referenced from:
      itk::RecursiveGaussianImageFilter<itk::Image<float, 2u>, itk::Image<float, 2u> >::PrintSelf(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, itk::Indent) const in link-fails.cpp.o
      itk::RecursiveGaussianImageFilter<itk::Image<float, 2u>, itk::Image<float, 2u> >::SetOrder(itk::RecursiveGaussianImageFilterEnums::GaussianOrder) in link-fails.cpp.o
      itk::RecursiveGaussianImageFilter<itk::Image<int, 2u>, itk::Image<float, 2u> >::PrintSelf(std::__1::basic_ostream<char, std::__1::char_traits<char> >&, itk::Indent) const in link-fails.cpp.o
      itk::RecursiveGaussianImageFilter<itk::Image<int, 2u>, itk::Image<float, 2u> >::SetOrder(itk::RecursiveGaussianImageFilterEnums::GaussianOrder) in link-fails.cpp.o
ld: symbol(s) not found for architecture x86_64

I can "fix" this by linking against ITKSmoothing as well, but I need to maintain compatibility with my 5.0.1 build, which doesn't appear to have an ITKSmoothing target at all. This leads to some confusing CMake code like this:

if(TARGET ITKSmoothing)
    target_link_libraries(link-fails ITKSmoothing)
endif()

But I feel like this shouldn't be necessary and that there's a bug here somewhere. If Mattes now needs new symbols, then shouldn't one of the libraries I'm linking against provide that through CMake? Isn't that what CMake is for? Or is this all complicated because the Mattes class is templated and INTERFACE targets weren't a thing when the ITK build system was written? Or maybe my 5.0.1 build is the bug and it should have and need ITKSmoothing, but doesn't?

@dzenanz
Copy link
Member

dzenanz commented Oct 15, 2020

Your CMakeLists.txt should look like this:

cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
project(link-fails)

find_package(ITK REQUIRED)
include(${ITK_USE_FILE})

add_executable(link-fails main.cpp)
target_link_libraries(link-fails ${ITK_LIBRARIES})

and if you want minimal number of linked libraries at the expense of hassle, then this:

cmake_minimum_required(VERSION 3.5 FATAL_ERROR)
project(link-fails)

find_package(ITK REQUIRED COMPONENTS
    ITKCommon
    ITKTransform
    ITKOptimizers
    ITKSmoothing
)
include(${ITK_USE_FILE})

add_executable(link-fails main.cpp)
target_link_libraries(link-fails ${ITK_LIBRARIES})

@csparker247
Copy link

Thanks @dzenanz. I've had issues with portability of my project when I link against the full list of libraries, so I've tried to keep my dependencies minimal overall. Is there a better way to figure out the minimal dependencies for a class than seeing if the build fails and adding in libraries until it doesn't?

Also, any idea what I didn't need ITKSmoothing until 5.1?

@dzenanz
Copy link
Member

dzenanz commented Oct 15, 2020

ITKSmoothing was a header-only library before 5.1. And if you build ITK with default modules, you get access to a lot of header-only modules including ITKSmoothing. So you would get it even if you didn't ask for it.

The way is to ask for all the modules whose classes you are directly using. You can find that out from the docs. For example, gaussian filter has in the header of the page written "Module ITKSmoothing". Each class has an indication of their module. If your code is non-trivial, you can use the script to determine that.

@csparker247
Copy link

Ahh! It being previously header-only makes perfect sense. And that script is excellent. I'll give it a try. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
type:Bug Inconsistencies or issues which will cause an incorrect result under some or all circumstances
Projects
None yet
Development

No branches or pull requests

3 participants