5e79f7228e
* BUG: Fix the GB_COMPONENT() macro so that it defines XXX_LDFLAGS and XXX_LIB variables as in the GB_COMPONENT_PKG_CONFIG() macro. The Makefile.am files of components were fixed accordingly. [GB.DB.FIREBIRD] * NEW: Switch to ibpp 2.5.3.1. * BUG: Link the driver to the fbclient library. [GB.GTK] * NEW: TreeView.Item.ParentKey and ColumnView.Item.ParentKey were implemented. [GB.QT] * NEW: TreeView.Item.ParentKey and ColumnView.Item.ParentKey were implemented. [GB.QT4] * NEW: TreeView.Item.ParentKey and ColumnView.Item.ParentKey were implemented. The previous change incorrectly talked about TreeView.ParentKey and ColumnView.ParentKey. git-svn-id: svn://localhost/gambas/trunk@2066 867c0c6c-44f3-4631-809d-bfa615b0a4ec
14 lines
446 B
Makefile
Executable file
14 lines
446 B
Makefile
Executable file
COMPONENT = gb.db.sqlite3
|
|
include $(top_srcdir)/component.am
|
|
|
|
INCLUDES = @SQLITE3_INC@
|
|
|
|
gblib_LTLIBRARIES = gb.db.sqlite3.la
|
|
|
|
gb_db_sqlite3_la_LIBADD = @SQLITE3_LIB@
|
|
gb_db_sqlite3_la_LDFLAGS = -module @LD_FLAGS@ @SQLITE3_LDFLAGS@
|
|
gb_db_sqlite3_la_CXXFLAGS = $(AM_CXXFLAGS) -fexceptions
|
|
|
|
gb_db_sqlite3_la_SOURCES = \
|
|
main.h main.cpp dataset.h dataset.cpp qry_dat.cpp qry_dat.h sqlitedataset.h \
|
|
sqlitedataset.cpp stringhelper.h stringhelper.cpp
|