Hash-FieldHash
view release on metacpan or search on metacpan
builder/MyBuilder.pm view on Meta::CPAN
}
sub process_xs_files {
my($self) = @_;
# NOTE:
# XS modules are consist of not only *.xs, but also *.c, *.xsi, and etc.
foreach my $from(glob "$xs_src/*.{c,cpp,cxx,xsi,xsh}") {
my $to = "$xs_build/$from";
$self->add_to_cleanup($to);
$self->copy_if_modified(from => $from, to => $to);
}
$self->SUPER::process_xs_files();
}
sub _infer_xs_spec {
my($self, $xs_file) = @_;
my $spec = $self->SUPER::_infer_xs_spec($xs_file);
( run in 2.332 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )