blob: 97e297e1765a4258bd985723a75c9ef6158adfe5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#
# 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();
my $insttype = shift;
Install($target, $insttype);
sub Usage
{
print "Usage: install.pl <targetdir> [installtype]\n";
print "installtype: client\n";
exit(1);
}
|