The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

my %configHash = %vtkConfigMacro;

$configHash{INC} = '-I../ '.$configHash{INC}; # Add another dir to include path


WriteMakefile(
    'NAME'	=> 'Graphics::VTK::Imaging',
    'CCFLAGS'   => $CCFLAGS,
    'OPTIMIZE'   => ' ', # Turn optimize off, optimization on cause very large
    			# memory consumption when compiling VTK.c
    'VERSION_FROM' => '../VTK.pm',
    'TYPEMAPS' => [ qw[ ../typemap typemapImaging ../Common/typemapCommon ] ],
    %configHash,
    
);