forked from slic3r/Slic3r
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
28 lines (26 loc) · 904 Bytes
/
Build.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
use Module::Build;
my $build = Module::Build->new(
module_name => 'Slic3r',
dist_abstract => 'STL-to-GCODE translator',
dist_author => 'Alessandro Ranellucci <[email protected]>',
dist_version => '0.1',
license => 'perl',
requires => {
'File::Basename' => '0',
'Getopt::Long' => '0',
'Math::Clipper' => '1.05',
'Math::ConvexHull' => '1.0.4',
'Math::Geometry::Voronoi' => '1.3',
'Math::PlanePath' => '53',
'Moo' => '0',
'Time::HiRes' => '0',
'XXX' => '0',
},
build_requires => {
'Test::More' => '0.10',
},
script_files => ['slic3r.pl'],
);
$build->dispatch('installdeps');
$build->dispatch('test', verbose => 0);
$build->create_build_script;