blob: 28563a930d5a7d15ff79deb8fd06e5e6672eace9 [file] [log] [blame]
#
# Script that provides 'make install' functionality for msvc builds
#
# src/tools/msvc/install.pl
#
use strict;
use warnings;
use Install qw(Install);
my $target = shift || Usage();
Install($target);
sub Usage
{
print "Usage: install.pl <targetdir>\n";
exit(1);
}