blob: daa577f56f000a1820135323f275fe9d384d05cc (
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
|
# Copyright 2011-2014 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.
########################################################################
# Setup the include and linker paths
########################################################################
include_directories(
${GR_DIGITAL_INCLUDE_DIRS}
${GR_BLOCKS_INCLUDE_DIRS}
${GR_ANALOG_INCLUDE_DIRS}
${GR_FFT_INCLUDE_DIRS}
${GR_FILTER_INCLUDE_DIRS}
${GR_BLOCKS_INCLUDE_DIRS}
${GNURADIO_RUNTIME_INCLUDE_DIRS}
${VOLK_INCLUDE_DIRS}
${LOG4CPP_INCLUDE_DIRS}
${Boost_INCLUDE_DIRS}
)
link_directories(${Boost_LIBRARY_DIRS})
link_directories(${LOG4CPP_LIBRARY_DIRS})
if(ENABLE_GR_CTRLPORT)
ADD_DEFINITIONS(-DGR_CTRLPORT)
endif(ENABLE_GR_CTRLPORT)
########################################################################
# Invoke macro to generate various sources
########################################################################
include(GrMiscUtils)
GR_EXPAND_X_CC_H(digital chunks_to_symbols_XX_impl bf bc sf sc if ic)
GR_EXPAND_X_CC_H(digital burst_shaper_XX_impl cc ff)
########################################################################
# Setup library
########################################################################
list(APPEND digital_sources
${generated_sources}
additive_scrambler_bb_impl.cc
binary_slicer_fb_impl.cc
clock_recovery_mm_cc_impl.cc
clock_recovery_mm_ff_impl.cc
cma_equalizer_cc_impl.cc
constellation.cc
constellation_decoder_cb_impl.cc
constellation_receiver_cb_impl.cc
constellation_soft_decoder_cf_impl.cc
corr_est_cc_impl.cc
correlate_access_code_bb_impl.cc
correlate_access_code_tag_bb_impl.cc
correlate_access_code_bb_ts_impl.cc
correlate_access_code_ff_ts_impl.cc
correlate_and_sync_cc_impl.cc
costas_loop_cc_impl.cc
cpmmod_bc_impl.cc
crc32.cc
crc32_bb_impl.cc
crc32_async_bb_impl.cc
descrambler_bb_impl.cc
diff_decoder_bb_impl.cc
diff_encoder_bb_impl.cc
diff_phasor_cc_impl.cc
fll_band_edge_cc_impl.cc
framer_sink_1_impl.cc
glfsr.cc
glfsr_source_b_impl.cc
glfsr_source_f_impl.cc
hdlc_deframer_bp_impl.cc
hdlc_framer_pb_impl.cc
header_payload_demux_impl.cc
kurtotic_equalizer_cc_impl.cc
lms_dd_equalizer_cc_impl.cc
map_bb_impl.cc
modulate_vector.cc
mpsk_receiver_cc_impl.cc
mpsk_snr_est.cc
mpsk_snr_est_cc_impl.cc
msk_timing_recovery_cc_impl.cc
ofdm_carrier_allocator_cvc_impl.cc
ofdm_chanest_vcvc_impl.cc
ofdm_cyclic_prefixer_impl.cc
ofdm_equalizer_base.cc
ofdm_equalizer_simpledfe.cc
ofdm_equalizer_static.cc
ofdm_frame_acquisition_impl.cc
ofdm_frame_equalizer_vcvc_impl.cc
ofdm_frame_sink_impl.cc
ofdm_insert_preamble_impl.cc
ofdm_mapper_bcv_impl.cc
ofdm_sampler_impl.cc
ofdm_serializer_vcc_impl.cc
ofdm_sync_sc_cfb_impl.cc
packet_header_default.cc
packet_header_ofdm.cc
packet_headergenerator_bb_impl.cc
packet_headerparser_b_impl.cc
packet_sink_impl.cc
pfb_clock_sync_ccf_impl.cc
pfb_clock_sync_fff_impl.cc
pn_correlator_cc_impl.cc
probe_density_b_impl.cc
probe_mpsk_snr_est_c_impl.cc
scrambler_bb_impl.cc
simple_correlator_impl.cc
simple_framer_impl.cc
)
#Add Windows DLL resource file if using MSVC
IF(MSVC)
include(${CMAKE_SOURCE_DIR}/cmake/Modules/GrVersion.cmake)
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/gnuradio-digital.rc.in
${CMAKE_CURRENT_BINARY_DIR}/gnuradio-digital.rc
@ONLY)
list(APPEND gr_digital_sources
${CMAKE_CURRENT_BINARY_DIR}/gnuradio-digital.rc
)
ENDIF(MSVC)
list(APPEND digital_libs
gnuradio-runtime
gnuradio-filter
gnuradio-blocks
gnuradio-analog
${VOLK_LIBRARIES}
${Boost_LIBRARIES}
${LOG4CPP_LIBRARIES}
)
add_library(gnuradio-digital SHARED ${digital_sources})
target_link_libraries(gnuradio-digital ${digital_libs})
GR_LIBRARY_FOO(gnuradio-digital RUNTIME_COMPONENT "digital_runtime" DEVEL_COMPONENT "digital_devel")
add_dependencies(
gnuradio-digital
digital_generated_includes
digital_generated_swigs
gnuradio-runtime
gnuradio-filter
gnuradio-analog
gnuradio-blocks
)
if(ENABLE_STATIC_LIBS)
if(ENABLE_GR_CTRLPORT)
# Remove GR_CTRLPORT set this target's definitions.
# Makes sure we don't try to use ControlPort stuff in source files
GET_DIRECTORY_PROPERTY(STATIC_DEFS COMPILE_DEFINITIONS)
list(REMOVE_ITEM STATIC_DEFS "GR_CTRLPORT")
SET_PROPERTY(DIRECTORY PROPERTY COMPILE_DEFINITIONS "${STATIC_DEFS}")
# readd it to the target since we removed it from the directory-wide list.
SET_PROPERTY(TARGET gnuradio-digital APPEND PROPERTY COMPILE_DEFINITIONS "GR_CTRLPORT")
endif(ENABLE_GR_CTRLPORT)
add_library(gnuradio-digital_static STATIC ${digital_sources})
add_dependencies(gnuradio-digital_static
digital_generated_includes
gnuradio-runtime_static
gnuradio-filter_static
gnuradio-analog_static
gnuradio-blocks_static)
if(NOT WIN32)
set_target_properties(gnuradio-digital_static
PROPERTIES OUTPUT_NAME gnuradio-digital)
endif(NOT WIN32)
install(TARGETS gnuradio-digital_static
ARCHIVE DESTINATION lib${LIB_SUFFIX} COMPONENT "digital_devel" # .lib file
)
endif(ENABLE_STATIC_LIBS)
|