summaryrefslogtreecommitdiff
path: root/gruel
diff options
context:
space:
mode:
authorTim Oshea <tim.oshea753@gmail.com>2012-04-30 15:57:41 -0700
committerJohnathan Corgan <jcorgan@corganenterprises.com>2012-04-30 15:57:41 -0700
commit9bab2daba836ad6c121b5237af287efb7dc5968e (patch)
tree4c0803dcee870d65c9b7ff3465ea78e68869fa2f /gruel
parent4e3a048576c02505fdac5d27feef0a3ebfabfaea (diff)
gruel: fix linker assumption made explicit on Ubuntu 12.04
Diffstat (limited to 'gruel')
-rw-r--r--gruel/src/lib/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/gruel/src/lib/CMakeLists.txt b/gruel/src/lib/CMakeLists.txt
index cd7b7abf49..2a96163ce1 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")
########################################################################