16 lines
341 B
Makefile
16 lines
341 B
Makefile
|
use ExtUtils::MakeMaker;
|
||
|
|
||
|
WriteMakefile(
|
||
|
NAME => 'Cualsea',
|
||
|
VERSION => '0.1',
|
||
|
test => { TESTS => 't/*.t' },
|
||
|
test => { TESTS => 't/*/*.t' },
|
||
|
PREREQ_PM => {
|
||
|
'Const::Fast' => 0,
|
||
|
'Types::Standard' => 0,
|
||
|
'Params::ValidationCompiler' => 0,
|
||
|
'JSON' => 0,
|
||
|
}
|
||
|
);
|
||
|
|