mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-06 00:31:10 +01:00
26 lines
540 B
Makefile
26 lines
540 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# $Id: //poco/Main/Data/ODBC/testsuite/Makefile#1 $
|
|
#
|
|
# Makefile for Poco SQLite testsuite
|
|
#
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
ifeq ($(OSNAME),Darwin)
|
|
SYSLIBS += -liodbc -liodbcinst
|
|
else
|
|
SYSLIBS += -lodbc -lodbcinst
|
|
endif
|
|
|
|
objects = ODBCTestSuite Driver \
|
|
ODBCDB2Test ODBCMySQLTest ODBCOracleTest \
|
|
ODBCPostgreSQLTest ODBCSQLiteTest SQLExecutor
|
|
|
|
target = testrunner
|
|
target_version = 1
|
|
target_libs = PocoODBC PocoData PocoFoundation CppUnit
|
|
|
|
include $(POCO_BASE)/build/rules/exec
|