/sqlite3cc

To get this branch, use:
bzr branch http://bzr.ed.am/sqlite3cc

« back to all changes in this revision

Viewing changes to test/Makefile.am

  • Committer: edam
  • Date: 2010-03-09 14:06:50 UTC
  • Revision ID: edam@waxworlds.org-20100309140650-oqwnsrbajh8d2p2m
- moved dependancy on boost_filesystem-mt from the library to test-main

Show diffs side-by-side

added added

removed removed

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