mirror of
https://github.com/pocoproject/poco.git
synced 2025-07-04 09:37:11 +02: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
31 lines
730 B
Makefile
31 lines
730 B
Makefile
#
|
|
# Makefile
|
|
#
|
|
# Makefile for Poco SQLite
|
|
#
|
|
|
|
include $(POCO_BASE)/build/rules/global
|
|
|
|
COMMONFLAGS += -I$(POCO_BASE)/SQL/SQLite/src
|
|
|
|
SYSFLAGS += -DSQLITE_THREADSAFE=1 -DSQLITE_DISABLE_LFS \
|
|
-DSQLITE_OMIT_UTF16 -DSQLITE_OMIT_PROGRESS_CALLBACK -DSQLITE_OMIT_COMPLETE \
|
|
-DSQLITE_OMIT_TCL_VARIABLE -DSQLITE_OMIT_DEPRECATED -DSQLITE_OS_UNIX
|
|
|
|
objects = Binder Extractor Notifier SessionImpl Connector \
|
|
SQLiteException SQLiteStatementImpl Utility
|
|
|
|
sqlite_objects = sqlite3
|
|
|
|
ifdef POCO_UNBUNDLED
|
|
SYSLIBS += -lsqlite3
|
|
else
|
|
objects += $(sqlite_objects)
|
|
endif
|
|
|
|
target = PocoSQLSQLite
|
|
target_version = $(LIBVERSION)
|
|
target_libs = PocoSQL PocoFoundation
|
|
|
|
include $(POCO_BASE)/build/rules/lib
|