Fix a few errors in comments. Patch by Fujii Masao, plus the one in
[PostgreSQL.git] / src / tools / msvc / mkvcbuild.pl
blob4d495da5f144d40e57bb5236d24ac79254b1c789
2 # Script that parses Unix style build environment and generates build files
3 # for building with Visual Studio.
5 # $PostgreSQL$
7 use strict;
8 use warnings;
10 use Mkvcbuild;
12 chdir('..\..\..') if (-d '..\msvc' && -d '..\..\..\src');
13 die 'Must run from root or msvc directory' unless (-d 'src\tools\msvc' && -d 'src');
15 die 'Could not find config.pl' unless (-f 'src/tools/msvc/config.pl');
17 our $config;
18 require 'src/tools/msvc/config.pl';
20 Mkvcbuild::mkvcbuild($config);