2012-04-29 18:52:25 +00:00
|
|
|
#
|
|
|
|
# Makefile
|
|
|
|
#
|
2012-09-21 05:06:37 +00:00
|
|
|
# $Id: //poco/1.4/Data/ODBC/testsuite/Makefile#4 $
|
2012-04-29 18:52:25 +00:00
|
|
|
#
|
|
|
|
# Makefile for Poco SQLite testsuite
|
|
|
|
#
|
|
|
|
# For Unicode support, add following to COMMONFLAGS:
|
|
|
|
#
|
|
|
|
# -DUNICODE
|
|
|
|
#
|
|
|
|
# Unicode is supported only for UnixODBC
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
|
2012-09-21 05:06:37 +00:00
|
|
|
include $(POCO_BASE)/Data/ODBC/ODBC.make
|
2012-04-29 18:52:25 +00:00
|
|
|
|
2012-07-10 03:58:41 +00:00
|
|
|
##################################################################################################
|
|
|
|
# Note: #
|
|
|
|
# Do not change linking order or move this line up, these libs have to be linked in this order. #
|
|
|
|
##################################################################################################
|
2012-07-07 16:03:21 +00:00
|
|
|
SYSLIBS += -lltdl -ldl
|
|
|
|
|
2012-04-29 18:52:25 +00:00
|
|
|
objects = ODBCTestSuite Driver \
|
|
|
|
ODBCDB2Test ODBCMySQLTest ODBCOracleTest ODBCPostgreSQLTest \
|
|
|
|
ODBCSQLiteTest ODBCSQLServerTest ODBCTest SQLExecutor
|
2012-09-21 05:06:37 +00:00
|
|
|
|
2012-04-29 18:52:25 +00:00
|
|
|
ifeq ($(POCO_CONFIG),MinGW)
|
|
|
|
objects += ODBCAccessTest
|
|
|
|
endif
|
|
|
|
|
|
|
|
target = testrunner
|
|
|
|
target_version = 1
|
|
|
|
target_libs = PocoDataODBC PocoData PocoFoundation CppUnit
|
|
|
|
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|