diff options
author | Sebastian Müller <senpo@posteo.de> | 2017-10-22 12:28:39 +0200 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2018-02-03 22:28:32 +0100 |
commit | acb0464327b312a9b0268ba2cc1fa6877fb7530c (patch) | |
tree | d6eb82d937e1b7fcfdca77374cf0aa4d9e44bdd4 | |
parent | a35e10870bbb9a71b3ab66b1dc58135e08c9543e (diff) |
[gr-fec] include GSL_LDFLAGS in CMakeLists to avoid linking errors in
dependent in-trees
-rw-r--r-- | gr-fec/lib/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-fec/lib/CMakeLists.txt b/gr-fec/lib/CMakeLists.txt index 8fb802a9ec..bb13eaebb3 100644 --- a/gr-fec/lib/CMakeLists.txt +++ b/gr-fec/lib/CMakeLists.txt @@ -114,7 +114,7 @@ list(APPEND gnuradio_fec_libs if(GSL_FOUND) include_directories(${GSL_INCLUDE_DIRS}) link_directories(${GSL_LIBRARY_DIRS}) - list(APPEND gnuradio_fec_libs ${GSL_LIBRARIES}) + list(APPEND gnuradio_fec_libs ${GSL_LDFLAGS}) list(APPEND gnuradio_fec_sources ldpc_bit_flip_decoder_impl.cc |