The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
use strict;
use Panda::Install;

write_makefile(
    NAME          => 'Panda::Date',
    VERSION_FROM  => 'lib/Panda/Date.pm',
    ABSTRACT_FROM => 'lib/Panda/Date.pod',
    PREREQ_PM     => {'Panda::Export' => 0},
    SRC           => 'src',
    INC           => '-Isrc',
    TYPEMAPS      => 'typemap',
    BIN_DEPS      => ['Panda::Time', 'Panda::Lib'],
    BIN_SHARE     => {
        INCLUDE  => {'src' => '/'},
        TYPEMAPS => {'typemap' => ''},
    },
    #OPTIMIZE => '-g',
    #CC => 'clang++',
    #CCFLAGS => '-std=c++11',
);