first commit for openGauss connect odbc code

This commit is contained in:
lishifu
2020-06-24 16:11:37 +08:00
parent 2a3a17f54e
commit 59eb2808c4
458 changed files with 141117 additions and 75 deletions

17
windows-defaults.mak Normal file
View File

@ -0,0 +1,17 @@
#
# This file includes default configuration options used to build the driver
# on Windows using "nmake /f win64.mak". You can override these by creating a
# file in the same directory called "windows-local.mak". It will be processed
#after these defaults. (You can copy this file as a template, and modify)
#
!IF "$(TARGET_CPU)" == "x86"
PG_INC=C:\Program Files (x86)\PostgreSQL\9.6\include
PG_LIB=C:\Program Files (x86)\PostgreSQL\9.6\lib
!ELSE
PG_INC=$(PROGRAMFILES)\PostgreSQL\9.6\include
PG_LIB=$(PROGRAMFILES)\PostgreSQL\9.6\lib
!ENDIF
# Enable/disable features
MSDTC = yes