postgresql/src/tools/msvc/mkvcbuild.pl

21 lines
543 B
Perl
Raw Normal View History

#
# Script that parses Unix style build environment and generates build files
# for building with Visual Studio.
#
# $PostgreSQL: pgsql/src/tools/msvc/mkvcbuild.pl,v 1.18 2007/03/17 14:01:01 mha Exp $
#
2006-09-04 23:30:40 +02:00
use strict;
use warnings;
use Mkvcbuild;
2006-09-04 23:30:40 +02:00
chdir('..\..\..') if (-d '..\msvc' && -d '..\..\..\src');
die 'Must run from root or msvc directory' unless (-d 'src\tools\msvc' && -d 'src');
die 'Could not find config.pl' unless (-f 'src/tools/msvc/config.pl');
2006-09-04 23:30:40 +02:00
our $config;
require 'src/tools/msvc/config.pl';
2006-09-04 23:30:40 +02:00
Mkvcbuild::mkvcbuild($config);