mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-12-25 23:07:18 +00:00
* remove leftover progen files * remove Data sources and turn headers into forwards * add SQL files #2059 * Data2sql: adjust Travis, AppVeyor & Makefiles (#2069) * Replace Data by SQL * Replace Data by SQL * Replace Data by SQL * Replace Data by SQL * fix header forwarding * Data2sql: Fixes for complete Travis CI success (#2071) * Replace Data by SQL * Replace Data by SQL * Replace Data by SQL * Replace Data by SQL * Replace Data by SQL * Restore DataFormatException * Replace Data by SQL * Replace Data by SQL * Replace Data by SQL * Replace Data by SQL * construct RowFilter from RecordSet reference instead of pointer * pass Container ref instead of ptr to Column * elimitate g++ warnings * SQL: remove raw pointers from interfaces #2094; add constness and move ops where appropriate * tidy up Postgres * ODBC fixes
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
#
|
|
# Makefile
|
|
#
|
|
# 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
|
|
|
|
include $(POCO_BASE)/SQL/ODBC/ODBC.make
|
|
|
|
##################################################################################################
|
|
# Note: #
|
|
# Do not change linking order or move this line up, these libs have to be linked in this order. #
|
|
##################################################################################################
|
|
ifeq ($(OSNAME), Cygwin)
|
|
else
|
|
ifneq ($(OSNAME),Darwin)
|
|
SYSLIBS += -lltdl
|
|
endif
|
|
ifneq ($(OSNAME),FreeBSD)
|
|
SYSLIBS += -ldl
|
|
endif
|
|
endif
|
|
|
|
objects = ODBCTestSuite Driver \
|
|
ODBCDB2Test ODBCMySQLTest ODBCOracleTest ODBCPostgreSQLTest \
|
|
ODBCSQLiteTest ODBCSQLServerTest ODBCTest SQLExecutor ODBCSybaseTest
|
|
|
|
ifeq ($(POCO_CONFIG),MinGW)
|
|
objects += ODBCAccessTest
|
|
endif
|
|
|
|
target = testrunner
|
|
target_version = 1
|
|
target_libs = PocoSQLODBC PocoSQL PocoFoundation PocoCppUnit
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|