mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-21 10:05:02 +01:00
66 lines
2.1 KiB
Makefile
66 lines
2.1 KiB
Makefile
#
|
|
# Makefile
|
|
#
|
|
# $Id: //poco/Main/Data/ODBC/Makefile#2 $
|
|
#
|
|
# Makefile for Poco ODBC
|
|
#
|
|
# For Unicode support, add following to COMMONFLAGS:
|
|
#
|
|
# -DUNICODE
|
|
#
|
|
# Unicode is supported only for UnixODBC
|
|
#
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
# adjust for the target system (usually '/usr/lib' or '/usr/local/lib')
|
|
ODBCLIBDIR = /usr/lib$(LIB64SUFFIX)
|
|
|
|
INCLUDE += -I/usr/local/include -I/usr/include -I/usr/include/odbc -I/usr/local/include/odbc
|
|
SYSLIBS += -L/usr/lib$(LIB64SUFFIX) -L/usr/local/lib$(LIB64SUFFIX) -L/usr/lib$(LIB64SUFFIX)/odbc -L/usr/local/lib$(LIB64SUFFIX)/odbc
|
|
|
|
ifeq ($(POCO_CONFIG),MinGW)
|
|
# -DODBCVER=0x0300: SQLHandle declaration issue
|
|
# -DNOMINMAX : MIN/MAX macros defined in windows conflict with libstdc++
|
|
CXXFLAGS += -DODBCVER=0x0300 -DNOMINMAX
|
|
else ifeq ($(POCO_CONFIG),CYGWIN)
|
|
# -DODBCVER=0x0300: SQLHandle declaration issue
|
|
# -DNOMINMAX : MIN/MAX macros defined in windows conflict with libstdc++
|
|
CXXFLAGS += -DODBCVER=0x0300 -DNOMINMAX
|
|
# CYGWIN platform has its own ODBC library in /lib/w32api
|
|
SYSLIBS += -L/lib/w32api -lodbc32 -lodbccp32
|
|
else
|
|
ifeq (0, $(shell test -e /usr/lib/libodbc$(SHAREDLIBLINKEXT); echo $$?))
|
|
SYSLIBS += -lodbc -lodbcinst
|
|
COMMONFLAGS += -DPOCO_UNIXODBC
|
|
else
|
|
ifeq (0, $(shell test -h /usr/lib/libodbc$(SHAREDLIBLINKEXT); echo $$?))
|
|
SYSLIBS += -lodbc -lodbcinst
|
|
COMMONFLAGS += -DPOCO_UNIXODBC
|
|
else
|
|
ifeq (0, $(shell test -e /usr/lib/libiodbc$(SHAREDLIBLINKEXT); echo $$?))
|
|
SYSLIBS += -liodbc -liodbcinst
|
|
COMMONFLAGS += -DPOCO_IODBC -I/usr/include/iodbc
|
|
else
|
|
ifeq (0, $(shell test -h /usr/lib/libiodbc$(SHAREDLIBLINKEXT); echo $$?))
|
|
SYSLIBS += -liodbc -liodbcinst -I/usr/include/iodbc
|
|
COMMONFLAGS += -DPOCO_IODBC
|
|
else
|
|
$(error No ODBC library found. Please install unixODBC or iODBC and try again)
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
objects = Binder ConnectionHandle Connector EnvironmentHandle \
|
|
Extractor ODBCMetaColumn ODBCException ODBCStatementImpl \
|
|
Parameter Preparator SessionImpl TypeInfo Unicode Utility
|
|
|
|
target = PocoDataODBC
|
|
target_version = $(LIBVERSION)
|
|
target_libs = PocoData PocoFoundation
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|