File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package Solution;
3
3
#
4
4
# Package that encapsulates a Visual C++ solution file generation
5
5
#
6
- # $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.54 2010/03/02 12:29:14 adunstan Exp $
6
+ # $PostgreSQL: pgsql/src/tools/msvc/Solution.pm,v 1.55 2010/03/02 22:02:31 adunstan Exp $
7
7
#
8
8
use Carp;
9
9
use strict;
@@ -419,6 +419,11 @@ sub AddProject
419
419
$proj -> AddIncludeDir($self -> {options }-> {iconv } . ' \include' );
420
420
$proj -> AddLibrary($self -> {options }-> {xml } . ' \lib\libxml2.lib' );
421
421
}
422
+ if ($self -> {options }-> {xslt })
423
+ {
424
+ $proj -> AddIncludeDir($self -> {options }-> {xslt } . ' \include' );
425
+ $proj -> AddLibrary($self -> {options }-> {xslt } . ' \lib\libxslt.lib' );
426
+ }
422
427
return $proj ;
423
428
}
424
429
You can’t perform that action at this time.
0 commit comments