diff options
author | Tim Oshea | 2012-04-30 15:57:41 -0700 |
---|---|---|
committer | Johnathan Corgan | 2012-04-30 15:57:41 -0700 |
commit | 9bab2daba836ad6c121b5237af287efb7dc5968e (patch) | |
tree | 4c0803dcee870d65c9b7ff3465ea78e68869fa2f | |
parent | 4e3a048576c02505fdac5d27feef0a3ebfabfaea (diff) | |
download | gnuradio-9bab2daba836ad6c121b5237af287efb7dc5968e.tar.gz gnuradio-9bab2daba836ad6c121b5237af287efb7dc5968e.tar.bz2 gnuradio-9bab2daba836ad6c121b5237af287efb7dc5968e.zip |
gruel: fix linker assumption made explicit on Ubuntu 12.04
-rw-r--r-- | gruel/src/lib/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gruel/src/lib/CMakeLists.txt b/gruel/src/lib/CMakeLists.txt index cd7b7abf4..2a96163ce 100644 --- a/gruel/src/lib/CMakeLists.txt +++ b/gruel/src/lib/CMakeLists.txt @@ -81,7 +81,7 @@ list(APPEND gruel_sources ) add_library(gruel SHARED ${gruel_sources}) -target_link_libraries(gruel ${Boost_LIBRARIES}) +target_link_libraries(gruel ${Boost_LIBRARIES} -lpthread) GR_LIBRARY_FOO(gruel RUNTIME_COMPONENT "gruel_runtime" DEVEL_COMPONENT "gruel_devel") ######################################################################## |