public
Description: SweeperBot - Play Windows minesweeper automatically
Homepage: http://sweeperbot.org/
Clone URL: git://github.com/pfenwick/sweeperbot.git
Click here to lend your support to: sweeperbot and make a donation at www.pledgie.com !
sweeperbot / Makefile.PL
100644 15 lines (9 sloc) 0.28 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use inc::Module::Install;
 
name 'App-SweeperBot';
all_from 'lib/App/SweeperBot.pm';
author 'Paul Fenwick <pjf@cpan.org>';
 
requires 'Win32::Screenshot';
requires 'Win32::GuiTest';
 
test_requires 'Test::More';
build_requires 'IPC::System::Simple'; # For MakeExe
 
WriteAll;