Addition of linking with libraries required to compile programs using include/plotting.hpp

This commit is contained in:
piotr 2014-04-17 10:56:08 +02:00
parent 3440db650d
commit 3f1ea81182
1 changed files with 5 additions and 1 deletions

View File

@ -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")
########################################################################