0a7006b0a5d2c8409e0368c97d8ad65896e63cbb
[gitmo/Moose.git] / Makefile.PL
1 use strict;
2 use warnings;
3
4 use Config;
5 use ExtUtils::MakeMaker;
6
7 use lib 'inc';
8
9 use MMHelper;
10 use MyInline;
11
12 warn <<'EOF';
13
14   ********************************* WARNING **********************************
15
16   This module uses Dist::Zilla for development. This Makefile.PL will let you
17   run the tests, but you are encouraged to install Dist::Zilla and the needed
18   plugins if you intend on doing any serious hacking.
19
20   ****************************************************************************
21
22 EOF
23
24 system( $^X, 'author/extract-inline-tests', '--quiet' );
25
26 eval MMHelper::my_package_subs();
27
28 WriteMakefile(
29     NAME => 'Moose',
30     test => { TESTS => 't/*.t t/*/*.t' },
31     CCFLAGS => MMHelper::ccflags_static('dev'),
32     MMHelper::mm_args(),
33 );