mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-30 15:39:13 +08:00
36 lines
1.4 KiB
Diff
36 lines
1.4 KiB
Diff
|
diff --git a/src/tools/msvc/Install.pm b/src/tools/msvc/Install.pm
|
||
|
index d109b2c90..75c7446e6 100644
|
||
|
--- a/src/tools/msvc/Install.pm
|
||
|
+++ b/src/tools/msvc/Install.pm
|
||
|
@@ -19,13 +19,13 @@ our (@ISA, @EXPORT_OK);
|
||
|
|
||
|
my $insttype;
|
||
|
my @client_contribs = ('oid2name', 'pgbench', 'vacuumlo');
|
||
|
-my @client_program_files = (
|
||
|
- 'clusterdb', 'createdb', 'createuser', 'dropdb',
|
||
|
- 'dropuser', 'ecpg', 'libecpg', 'libecpg_compat',
|
||
|
- 'libpgtypes', 'libpq', 'pg_basebackup', 'pg_config',
|
||
|
- 'pg_dump', 'pg_dumpall', 'pg_isready', 'pg_receivewal',
|
||
|
- 'pg_recvlogical', 'pg_restore', 'psql', 'reindexdb',
|
||
|
- 'vacuumdb', @client_contribs);
|
||
|
+my @client_program_files = ( 'libecpg','libecpg_compat', 'libpgtypes', 'libpq' );
|
||
|
+ # 'clusterdb', 'createdb', 'createuser', 'dropdb',
|
||
|
+ # 'dropuser', 'ecpg', 'libecpg', 'libecpg_compat',
|
||
|
+ #'libpgtypes', 'libpq', 'pg_basebackup', 'pg_config',
|
||
|
+ #'pg_dump', 'pg_dumpall', 'pg_isready', 'pg_receivewal',
|
||
|
+ #'pg_recvlogical', 'pg_restore', 'psql', 'reindexdb',
|
||
|
+ #'vacuumdb', @client_contribs);
|
||
|
|
||
|
sub lcopy
|
||
|
{
|
||
|
@@ -110,7 +110,7 @@ sub Install
|
||
|
CopyFiles(
|
||
|
'Import libraries',
|
||
|
$target . '/lib/',
|
||
|
- "$conf\\", "postgres\\postgres.lib", "libpgcommon\\libpgcommon.lib",
|
||
|
+ "$conf\\", "libpgcommon\\libpgcommon.lib",
|
||
|
"libpgport\\libpgport.lib");
|
||
|
CopyContribFiles($config, $target);
|
||
|
CopyIncludeFiles($target);
|
||
|
|