We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentb098dbe commit05028ccCopy full SHA for 05028cc
src/tools/msvc/Solution.pm
@@ -3,7 +3,7 @@ package Solution;
3
#
4
# Package that encapsulates a Visual C++ solution file generation
5
6
-# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.54 2010/03/0212:29:14 adunstan Exp $
+# $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.55 2010/03/0222:02:31 adunstan Exp $
7
8
use Carp;
9
use strict;
@@ -419,6 +419,11 @@ sub AddProject
419
$proj->AddIncludeDir($self->{options}->{iconv} .'\include');
420
$proj->AddLibrary($self->{options}->{xml} .'\lib\libxml2.lib');
421
}
422
+if ($self->{options}->{xslt})
423
+ {
424
+$proj->AddIncludeDir($self->{options}->{xslt} .'\include');
425
+$proj->AddLibrary($self->{options}->{xslt} .'\lib\libxslt.lib');
426
+ }
427
return$proj;
428
429