aboutsummaryrefslogtreecommitdiff
path: root/src/tools/msvc/install.pl
blob: f27a7b3f1629f0479afea6b2daf5e3edf73ed14a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# 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);
}