File tree Expand file tree Collapse file tree 13 files changed +48
-4
lines changed Expand file tree Collapse file tree 13 files changed +48
-4
lines changed Original file line number Diff line number Diff line change 11package Install ;
2-
2+ #
3+ # Package that provides 'make install' functionality for msvc builds
4+ #
5+ # $PostgreSQL: pgsql/src/tools/msvc/Install.pm,v 1.2 2007/03/17 14:01:01 mha Exp $
6+ #
37use strict;
48use warnings;
59use Carp;
Original file line number Diff line number Diff line change 11package Mkvcbuild ;
2-
2+ #
3+ # Package that generates build files for msvc build
4+ #
5+ # $PostgreSQL: pgsql/src/tools/msvc/Mkvcbuild.pm,v 1.2 2007/03/17 14:01:01 mha Exp $
6+ #
37use Carp;
48use Win32;
59use strict;
Original file line number Diff line number Diff line change 11package Project ;
2-
2+ #
3+ # Package that encapsulates a Visual C++ project file generation
4+ #
5+ # $PostgreSQL: pgsql/src/tools/msvc/Project.pm,v 1.10 2007/03/17 14:01:01 mha Exp $
6+ #
37use Carp;
48use strict;
59use warnings;
Original file line number Diff line number Diff line change 11package Solution ;
2+ #
3+ # Package that encapsulates a Visual C++ solution file generation
4+ #
5+ # $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.17 2007/03/17 14:01:01 mha Exp $
6+ #
27use Carp;
38use strict;
49use warnings;
Original file line number Diff line number Diff line change 11@ echo off
2+ REM $PostgreSQL: pgsql/src/tools/msvc/build.bat,v 1.7 2007/03/17 14:01:01 mha Exp $
3+
24SETLOCAL
35SET STARTDIR = %CD%
46if exist src\tools\msvc\buildenv.bat call src\tools\msvc\buildenv.bat
Original file line number Diff line number Diff line change 11@ echo off
22REM Adjust path for your docbook installation in buildenv.bat
33
4+ REM $PostgreSQL: pgsql/src/tools/msvc/builddoc.bat,v 1.5 2007/03/17 14:01:01 mha Exp $
5+
46SETLOCAL
57SET STARTDIR = %CD%
68SET OPENJADE = openjade-1.3.1
Original file line number Diff line number Diff line change 11@ echo off
2+ REM $PostgreSQL: pgsql/src/tools/msvc/clean.bat,v 1.3 2007/03/17 14:01:01 mha Exp $
23
34set D = %CD%
45if exist ..\msvc if exist ..\..\..\src cd ..\..\..
@@ -56,4 +57,4 @@ goto :eof
5657
5758:del
5859if exist %1 del /q %1
59- goto :eof
60+ goto :eof
Original file line number Diff line number Diff line change 11my @def ;
2+ #
3+ # Script that generates a .DEF file for all objects in a directory
4+ #
5+ # $PostgreSQL: pgsql/src/tools/msvc/gendef.pl,v 1.5 2007/03/17 14:01:01 mha Exp $
6+ #
27
38die " Usage: gendef.pl <modulepath>\n " unless ($ARGV [0] =~ / \\ ([^\\ ]+$) / );
49my $defname = uc $1 ;
Original file line number Diff line number Diff line change 1+ #
2+ # Script that provides 'make install' functionality for msvc builds
3+ #
4+ # $PostgreSQL: pgsql/src/tools/msvc/install.pl,v 1.7 2007/03/17 14:01:01 mha Exp $
5+ #
16use strict;
27use warnings;
38
Original file line number Diff line number Diff line change 1+ #
2+ # Script that parses Unix style build environment and generates build files
3+ # for building with Visual Studio.
4+ #
5+ # $PostgreSQL: pgsql/src/tools/msvc/mkvcbuild.pl,v 1.18 2007/03/17 14:01:01 mha Exp $
6+ #
17use strict;
28use warnings;
39
You can’t perform that action at this time.
0 commit comments