Skip to content

Commit

Permalink
Merge pull request #23 from yan12125/fix_out_of_source_build
Browse files Browse the repository at this point in the history
Enables out-of-source build
  • Loading branch information
vinzenz committed Mar 23, 2015
2 parents 2da0811 + 611af1a commit e3b3a63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.am
Expand Up @@ -5,7 +5,7 @@ AM_CXXFLAGS = -W -Wall -pedantic -W -std=c++0x

lib_LTLIBRARIES = libvsqlitepp.la

libvsqlitepp_la_CXXFLAGS = -I include $(AM_CXXFLAGS)
libvsqlitepp_la_CXXFLAGS = -I $(srcdir)/include $(AM_CXXFLAGS)
libvsqlitepp_la_LDFLAGS = -Wl,--no-as-needed -lsqlite3 -lboost_system -lboost_filesystem -Wl,-soname -Wl,libvsqlitepp.so.3 -version-info 3:0:0
libvsqlitepp_la_SOURCES = \
src/sqlite/backup.cpp \
Expand All @@ -20,7 +20,7 @@ libvsqlitepp_la_SOURCES = \
$(NULL)

noinst_PROGRAMS=vsqlitepp_example
vsqlitepp_example_CXXFLAGS=-I include $(AM_CXXFLAGS)
vsqlitepp_example_CXXFLAGS=-I $(srcdir)/include $(AM_CXXFLAGS)
vsqlitepp_example_LDADD = libvsqlitepp.la
vsqlitepp_example_SOURCES = \
examples/sqlite_wrapper.cpp \
Expand Down

0 comments on commit e3b3a63

Please sign in to comment.