diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-10-22 21:46:20 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2015-10-22 21:46:20 +0200 |
commit | c463f360698ed9ca4af32a42ae0f56a7cc9185cb (patch) | |
tree | 7150d045b13f2afa7064afc8d9f44577bc37d99e /cmake/Modules | |
parent | 43c1ce04adecc91d23f99481ccb229607d837255 (diff) | |
download | etisnoop-c463f360698ed9ca4af32a42ae0f56a7cc9185cb.tar.gz etisnoop-c463f360698ed9ca4af32a42ae0f56a7cc9185cb.tar.bz2 etisnoop-c463f360698ed9ca4af32a42ae0f56a7cc9185cb.zip |
Add DAB+ Reed-Solomon decoding and error statistics print
Diffstat (limited to 'cmake/Modules')
-rw-r--r-- | cmake/Modules/FindFec.cmake | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/cmake/Modules/FindFec.cmake b/cmake/Modules/FindFec.cmake new file mode 100644 index 0000000..59dc525 --- /dev/null +++ b/cmake/Modules/FindFec.cmake @@ -0,0 +1,34 @@ +# Try to find FEC library and include path. +# Once done this will define +# +# FEC_INCLUDE_DIRS - where to find fec.h, etc. +# FEC_LIBRARIES - List of libraries when using libFEC. +# FEC_FOUND - True if libFEC found. + +find_path(FEC_INCLUDE_DIR fec.h DOC "The directory where fec.h resides") +find_library(FEC_LIBRARY NAMES fec DOC "The libFEC library") + +if(FEC_INCLUDE_DIR AND FEC_LIBRARY) + set(FEC_FOUND 1) + set(FEC_LIBRARIES ${FEC_LIBRARY}) + set(FEC_INCLUDE_DIRS ${FEC_INCLUDE_DIR}) +else(FEC_INCLUDE_DIR AND FEC_LIBRARY) + set(FEC_FOUND 0) + set(FEC_LIBRARIES) + set(FEC_INCLUDE_DIRS) +endif(FEC_INCLUDE_DIR AND FEC_LIBRARY) + +mark_as_advanced(FEC_INCLUDE_DIR) +mark_as_advanced(FEC_LIBRARY) +mark_as_advanced(FEC_FOUND) + +if(NOT FEC_FOUND) + set(FEC_DIR_MESSAGE "libfec was not found. Make sure FEC_LIBRARY and FEC_INCLUDE_DIR are set.") + if(NOT FEC_FIND_QUIETLY) + message(STATUS "${FEC_DIR_MESSAGE}") + else(NOT FEC_FIND_QUIETLY) + if(FEC_FIND_REQUIRED) + message(FATAL_ERROR "${FEC_DIR_MESSAGE}") + endif(FEC_FIND_REQUIRED) + endif(NOT FEC_FIND_QUIETLY) +endif(NOT FEC_FOUND) |