1# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.012.
2use strict;
3use warnings;
4
5use 5.006;
6
7use ExtUtils::MakeMaker 6.17;
8
9my %WriteMakefileArgs = (
10  "ABSTRACT" => "Portable API to set the terminal titlebar",
11  "AUTHOR" => "David Golden <dagolden\@cpan.org>",
12  "CONFIGURE_REQUIRES" => {
13    "ExtUtils::MakeMaker" => "6.17"
14  },
15  "DISTNAME" => "Term-Title",
16  "LICENSE" => "apache",
17  "MIN_PERL_VERSION" => "5.006",
18  "NAME" => "Term::Title",
19  "PREREQ_PM" => {
20    "Exporter" => 0,
21    "strict" => 0,
22    "warnings" => 0
23  },
24  "TEST_REQUIRES" => {
25    "ExtUtils::MakeMaker" => 0,
26    "File::Spec" => 0,
27    "Test::More" => 0
28  },
29  "VERSION" => "0.09",
30  "test" => {
31    "TESTS" => "t/*.t"
32  }
33);
34
35
36my %FallbackPrereqs = (
37  "Exporter" => 0,
38  "ExtUtils::MakeMaker" => 0,
39  "File::Spec" => 0,
40  "Test::More" => 0,
41  "strict" => 0,
42  "warnings" => 0
43);
44
45
46unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
47  delete $WriteMakefileArgs{TEST_REQUIRES};
48  delete $WriteMakefileArgs{BUILD_REQUIRES};
49  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
50}
51
52delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
53  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
54
55if ( $^O eq 'MSWin32' ) {
56	$WriteMakefileArgs{PREREQ_PM}{'Win32::Console'} = $FallbackPrereqs{'Win32::Console'} = '0';
57}
58
59WriteMakefile(%WriteMakefileArgs);
60