diff options
author | Tom Rondeau <trondeau@vt.edu> | 2011-10-15 11:20:33 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2011-10-15 11:20:33 -0400 |
commit | 9ef30ab61c213a8e45d35768425f5759d27c14a8 (patch) | |
tree | 82223ac490bc6899126ef5d162bd7dfd691e8bbf /gr-audio/examples | |
parent | bc98dc91bbad8d70bd0b45eb5077cc37da605b98 (diff) |
build: fixed a bug with missing boost filesystem lib.
Diffstat (limited to 'gr-audio/examples')
-rw-r--r-- | gr-audio/examples/c++/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gr-audio/examples/c++/Makefile.am b/gr-audio/examples/c++/Makefile.am index 88bd7c1fd9..d3283354f5 100644 --- a/gr-audio/examples/c++/Makefile.am +++ b/gr-audio/examples/c++/Makefile.am @@ -35,4 +35,6 @@ GR_AUDIO_LA=$(top_builddir)/gr-audio/lib/libgnuradio-audio.la noinst_PROGRAMS = dial_tone dial_tone_SOURCES = dial_tone.cc -dial_tone_LDADD = $(GNURADIO_CORE_LA) $(GR_AUDIO_LA) +dial_tone_LDADD = \ + $(GNURADIO_CORE_LA) $(GR_AUDIO_LA) \ + $(BOOST_FILESYSTEM_LIB) |