Skip to content

Commit

Permalink
explicitly link boost in Makefile.am
Browse files Browse the repository at this point in the history
  • Loading branch information
joannalange committed Apr 9, 2019
1 parent cceca64 commit d5579b4
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions Makefile.am
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
bin_PROGRAMS = kmad test_kmad

shared_LDADD = $(BOOST_FILESYSTEM_LIB) \
$(BOOST_PROGRAM_OPTIONS_LIB) \
$(BOOST_REGEX_LIB) \
$(BOOST_SYSTEM_LIB) \
$(BOOST_UNIT_TEST_FRAMEWORK_LIB) \
shared_LDADD = -lboost_filesystem \
-lboost_program_options \
-lboost_regex \
-lboost_system \
-lboost_unit_test_framework \
-lconfig++

#shared_LDADD = $(BOOST_FILESYSTEM_LIB) \
# $(BOOST_PROGRAM_OPTIONS_LIB) \
# $(BOOST_REGEX_LIB) \
# $(BOOST_SYSTEM_LIB) \
# $(BOOST_UNIT_TEST_FRAMEWORK_LIB) \
# -lconfig++

shared_SOURCES = src/compare_doubles.cpp \
src/fasta.cpp \
src/feature_scores.cpp \
Expand Down

0 comments on commit d5579b4

Please sign in to comment.