/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc
5 by edam
- updated README
1
# Makefile.am -- process this file with automake to produce Makefile.in
2
7 by edam
- removed "OK" from test-main when test is successful
3
CPPFLAGS = -I$(top_srcdir)/include
6 by edam
- fixed .am files so the library gets built!
4
44 by Tim Marston
updated tests for blob support
5
check_PROGRAMS = \
6
	test-main \
7
	test-blob
7 by edam
- removed "OK" from test-main when test is successful
8
8 by edam
- moved dependancy on boost_filesystem-mt from the library to test-main
9
test_main_SOURCES = \
10
	test-main.cc
11
test_main_LDADD = \
12
	../src/libsqlite3cc.la \
37 by Tim Marston
fixed building of test program with boost libraries
13
	-lboost_filesystem \
14
	-lboost_system
7 by edam
- removed "OK" from test-main when test is successful
15
44 by Tim Marston
updated tests for blob support
16
test_blob_SOURCES = \
17
	test-blob.cc
18
test_blob_LDADD = \
19
	../src/libsqlite3cc.la \
20
	-lboost_filesystem \
21
	-lboost_system
22
23
TESTS = \
24
	test-main \
25
	test-blob