1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Makefile.am -- process this file with automake to produce Makefile.in
CPPFLAGS = -I$(top_srcdir)/include
check_PROGRAMS = test-main
test_main_SOURCES = \
test-main.cc
test_main_LDADD = \
../src/libsqlite3cc.la \
-lboost_filesystem-mt
TESTS = test-main
|