diff options
author | Johnathan Corgan <jcorgan@corganenterprises.com> | 2012-04-17 18:03:44 -0700 |
---|---|---|
committer | Johnathan Corgan <jcorgan@corganenterprises.com> | 2012-04-17 18:03:44 -0700 |
commit | ae9e7c33d7c78da54ab0e63f82fc8c59a5ea9dfa (patch) | |
tree | bfa4526eef5e7460ba85c761955b19b6b6a0c5c8 /gr-fcd | |
parent | 638762cd253dea7c290c6aa9001fb3bd8aed632a (diff) | |
parent | d15e40a4fc3aebabbb76bea49dc04d14aebb7a48 (diff) |
Merge branch 'maint'
Diffstat (limited to 'gr-fcd')
-rw-r--r-- | gr-fcd/lib/CMakeLists.txt | 7 |
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") |