summaryrefslogtreecommitdiff
path: root/gr-fec/lib/viterbi/CMakeLists.txt
blob: 10c594024626bca7c1b3c387e134b61d832b79b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# Copyright 2010-2011 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# GNU Radio is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# GNU Radio is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Radio; see the file COPYING.  If not, write to
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.

########################################################################
# This file included, use CMake directory variables
########################################################################

set(viterbi_sources
    ${CMAKE_CURRENT_SOURCE_DIR}/metrics.c
    ${CMAKE_CURRENT_SOURCE_DIR}/tab.c
    ${CMAKE_CURRENT_SOURCE_DIR}/viterbi.c
)

########################################################################
# define missing erf function with C linkage (hack for metrics.c)
########################################################################
if(MSVC)
file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/boost_math_erf.cc "
#include <boost/math/special_functions/erf.hpp>
extern \"C\" double erf(double x){
    return boost::math::erf(x);
}
")
list(APPEND viterbi_sources ${CMAKE_CURRENT_BINARY_DIR}/boost_math_erf.cc)
endif(MSVC)

########################################################################
# Append gnuradio-runtime library sources
########################################################################
list(APPEND gnuradio_fec_sources ${viterbi_sources})

########################################################################
# Install runtime headers
########################################################################
#install(
#    FILES ${CMAKE_CURRENT_SOURCE_DIR}/viterbi.h
#    DESTINATION ${GR_INCLUDE_DIR}/gnuradio/fec
#)

########################################################################
# Create some text executables (not registered tests)
# Its not much to build so the sources are just re-listed,
# rather than create a new library just for these two apps.
########################################################################
#ADD_EXECUTABLE(viterbi_encode ${CMAKE_CURRENT_SOURCE_DIR}/encode.cc ${viterbi_sources})
#ADD_EXECUTABLE(viterbi_decode ${CMAKE_CURRENT_SOURCE_DIR}/decode.cc ${viterbi_sources})