aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dunstan <andrew@dunslane.net>2017-05-12 10:17:54 -0400
committerAndrew Dunstan <andrew@dunslane.net>2017-05-12 10:21:13 -0400
commitb757e01f62e44b4f425f78e3dc4e247ca9f1e983 (patch)
tree1ea76e20a7222b0e1c934d9b8f06c0e7710dfb49
parent96e1cb4c0fb45dfca2d8b0a58693b94cbdaabe11 (diff)
downloadpostgresql-b757e01f62e44b4f425f78e3dc4e247ca9f1e983.tar.gz
postgresql-b757e01f62e44b4f425f78e3dc4e247ca9f1e983.zip
Add libxml2 include path for MSVC builds
On Unix this path is detected via the use of xml2-config, but that's not available on Windows. This means that users building with libxml2 will no longer need to move things around from the standard libxml2 installation for MSVC builds. Backpatch to all live branches.
-rw-r--r--src/tools/msvc/Solution.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/tools/msvc/Solution.pm b/src/tools/msvc/Solution.pm
index 7d6275ecb4b..dedfdcb9032 100644
--- a/src/tools/msvc/Solution.pm
+++ b/src/tools/msvc/Solution.pm
@@ -546,6 +546,7 @@ sub AddProject
if ($self->{options}->{xml})
{
$proj->AddIncludeDir($self->{options}->{xml} . '\include');
+ $proj->AddIncludeDir($self->{options}->{xml} . '\include\libxml2');
$proj->AddLibrary($self->{options}->{xml} . '\lib\libxml2.lib');
}
if ($self->{options}->{xslt})