summaryrefslogtreecommitdiff
path: root/gr-fcd
diff options
context:
space:
mode:
authorJohnathan Corgan <jcorgan@corganenterprises.com>2012-04-17 18:03:44 -0700
committerJohnathan Corgan <jcorgan@corganenterprises.com>2012-04-17 18:03:44 -0700
commitae9e7c33d7c78da54ab0e63f82fc8c59a5ea9dfa (patch)
treebfa4526eef5e7460ba85c761955b19b6b6a0c5c8 /gr-fcd
parent638762cd253dea7c290c6aa9001fb3bd8aed632a (diff)
parentd15e40a4fc3aebabbb76bea49dc04d14aebb7a48 (diff)
Merge branch 'maint'
Diffstat (limited to 'gr-fcd')
-rw-r--r--gr-fcd/lib/CMakeLists.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/gr-fcd/lib/CMakeLists.txt b/gr-fcd/lib/CMakeLists.txt
index a2f5b457d2..9a5605d99c 100644
--- a/gr-fcd/lib/CMakeLists.txt
+++ b/gr-fcd/lib/CMakeLists.txt
@@ -63,5 +63,10 @@ endif()
add_library(gnuradio-fcd SHARED ${gr_fcd_sources})
-target_link_libraries(gnuradio-fcd ${fcd_libs} rt)
+if (LINUX)
+ list(APPEND fcd_libs rt)
+endif()
+target_link_libraries(gnuradio-fcd ${fcd_libs})
+
+
GR_LIBRARY_FOO(gnuradio-fcd RUNTIME_COMPONENT "fcd_runtime" DEVEL_COMPONENT "fcd_devel")