Addition of linking with libraries required to compile programs using include/plotting.hpp
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 @@
 )
 
 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")
 
 ########################################################################