depend to Scalar::Util 1.14.
[gitmo/Mouse.git] / Makefile.PL
1 use inc::Module::Install;
2
3 name     'Mouse';
4 all_from 'lib/Mouse.pm';
5
6 tests 't/*.t t/*/*.t';
7
8 if ($] < 5.008004) {
9     # Scalar::Util < 1.14 has a bug.
10     # > Fixed looks_like_number(undef) to return false for perl >= 5.009002
11     requires 'Scalar::Util' => 1.14;
12 }
13
14 build_requires 'Test::Exception';
15 build_requires 'Test::More';
16
17 auto_include;
18 WriteAll;