The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use strict;
use warnings;

# for authors, you need to also install:
#  Module::Install::XSUtil
#  Module::Install::AuthorTests
#  Module::Install::Repository
#
# the necessary bits will be bundled for ordinary users

use inc::Module::Install;

all_from 'lib/Sub/Attribute.pm';

use_ppport 3.19;
cc_warnings;

requires 'parent', 0.2;

test_requires 'Test::More'     => 0.88;
test_requires 'parent'         => 0.221;
test_requires 'MRO::Compat'    => 0.09;
test_requires 'Class::Trigger' => 0.14;

no_index directory => 'example';

tests 't/*.t';
author_tests 'xt';

auto_set_repository;

clean_files q(
	Sub-Attribute-* *.stackdump
	*.gcda *.gcno *.gcov
	nytprof *.out
	cover_db
);

WriteAll check_nmake => 0;