aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorpiotr <Piotr Krysik pkrysik@elka.pw.edu.pl>2014-04-17 10:56:08 +0200
committerpiotr <Piotr Krysik pkrysik@elka.pw.edu.pl>2014-04-17 10:56:08 +0200
commit3f1ea8118227ce1864e95735547a1508002b756c (patch)
tree8e7cf03bff4715ebc102841b4ed24b32609fde6d /lib
parent3440db650dd930dddd34d0ffbda8cd5935381eee (diff)
Addition of linking with libraries required to compile programs using include/plotting.hpp
Diffstat (limited to 'lib')
-rw-r--r--lib/CMakeLists.txt6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/CMakeLists.txt b/lib/CMakeLists.txt
index 1139353..8899310 100644
--- a/lib/CMakeLists.txt
+++ b/lib/CMakeLists.txt
@@ -34,7 +34,11 @@ list(APPEND gsm_sources
)
add_library(gnuradio-gsm SHARED ${gsm_sources})
-target_link_libraries(gnuradio-gsm ${Boost_LIBRARIES} ${GNURADIO_RUNTIME_LIBRARIES})
+target_link_libraries(gnuradio-gsm ${Boost_LIBRARIES} ${GNURADIO_RUNTIME_LIBRARIES}
+ boost_iostreams
+ boost_system
+ boost_filesystem
+)
set_target_properties(gnuradio-gsm PROPERTIES DEFINE_SYMBOL "gnuradio_gsm_EXPORTS")
########################################################################