-
Notifications
You must be signed in to change notification settings - Fork 19
/
settings.projinc
34 lines (24 loc) · 1 KB
/
settings.projinc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<?xml version="1.0"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="all">
<!--
Project level settings.
Can be overridden on the commandline by things like:
msbuild /p:PGPATH=C:\postgresql-8.3.0
Copyright (c) 2004-2024 EnterpriseDB Corporation. All Rights Reserved.
Licensed under the Artistic License v2.0, see
https://opensource.org/licenses/artistic-license-2.0
for full details
-->
<PropertyGroup>
<!-- Debug build? -->
<DEBUG>0</DEBUG>
<!-- PostgreSQL source tree -->
<PGPATH>C:\pgbuild\buildtrees\postgresql-8.3beta3</PGPATH>
<!-- Gettext source tree -->
<GETTEXTPATH>C:\pgBuild\gettext</GETTEXTPATH>
<!-- OpenSSL source tree -->
<OPENSSLPATH>C:\pgBuild\OpenSSL</OPENSSLPATH>
<!-- Kerberos source tree -->
<KERBEROSPATH>C:\pgBuild\krb5</KERBEROSPATH>
</PropertyGroup>
</Project>