blob: 5a730b9135dc00cd900336a60e5dd3c1f4c4370a [file] [log] [blame]
piotr437f5462014-02-04 17:57:25 +01001# Copyright 2011,2012 Free Software Foundation, Inc.
2#
3# This file is part of GNU Radio
4#
5# GNU Radio is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; either version 3, or (at your option)
8# any later version.
9#
10# GNU Radio is distributed in the hope that it will be useful,
11# but WITHOUT ANY WARRANTY; without even the implied warranty of
12# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13# GNU General Public License for more details.
14#
15# You should have received a copy of the GNU General Public License
16# along with GNU Radio; see the file COPYING. If not, write to
17# the Free Software Foundation, Inc., 51 Franklin Street,
18# Boston, MA 02110-1301, USA.
19
20########################################################################
21# Setup library
22########################################################################
23include(GrPlatform) #define LIB_SUFFIX
24
piotr7f3f3662014-07-08 16:47:53 +020025include_directories(${Boost_INCLUDE_DIR} receiver burst_printer)
piotr437f5462014-02-04 17:57:25 +010026link_directories(${Boost_LIBRARY_DIRS})
piotr437f5462014-02-04 17:57:25 +010027list(APPEND gsm_sources
piotr7f3f3662014-07-08 16:47:53 +020028 receiver/receiver_impl.cc
29 receiver/receiver_config.cc
piotr501c51e2014-07-08 23:24:07 +020030 receiver/viterbi_detector.cc
31 receiver/sch.c
piotrc00ce9c2014-08-04 11:21:24 +020032 misc_utils/bursts_printer_impl.cc
piotrdda22272014-08-04 11:31:54 +020033 misc_utils/extract_system_info_impl.cc
piotrfaacc722014-07-20 23:48:32 +020034 demapping/get_bcch_or_ccch_bursts_impl.cc
35 decoding/control_channels_decoder_impl.cc
36 decoding/cch.c
37 decoding/fire_crc.c
38)
piotr437f5462014-02-04 17:57:25 +010039
40add_library(gnuradio-gsm SHARED ${gsm_sources})
piotr3f1ea812014-04-17 10:56:08 +020041target_link_libraries(gnuradio-gsm ${Boost_LIBRARIES} ${GNURADIO_RUNTIME_LIBRARIES}
42 boost_iostreams
43 boost_system
44 boost_filesystem
45)
piotr437f5462014-02-04 17:57:25 +010046set_target_properties(gnuradio-gsm PROPERTIES DEFINE_SYMBOL "gnuradio_gsm_EXPORTS")
47
48########################################################################
49# Install built library files
50########################################################################
51install(TARGETS gnuradio-gsm
52 LIBRARY DESTINATION lib${LIB_SUFFIX} # .so/.dylib file
53 ARCHIVE DESTINATION lib${LIB_SUFFIX} # .lib file
54 RUNTIME DESTINATION bin # .dll file
55)
56
57########################################################################
58# Build and register unit test
59########################################################################
piotr7f3f3662014-07-08 16:47:53 +020060#include(GrTest)
piotr437f5462014-02-04 17:57:25 +010061
piotr7f3f3662014-07-08 16:47:53 +020062#include_directories(${CPPUNIT_INCLUDE_DIRS})
piotr437f5462014-02-04 17:57:25 +010063
piotr7f3f3662014-07-08 16:47:53 +020064#list(APPEND test_gsm_sources
65# ${CMAKE_CURRENT_SOURCE_DIR}/test_gsm.cc
66# ${CMAKE_CURRENT_SOURCE_DIR}/qa_gsm.cc
67# ${CMAKE_CURRENT_SOURCE_DIR}/qa_receiver.cc
68#)
piotr437f5462014-02-04 17:57:25 +010069
piotr7f3f3662014-07-08 16:47:53 +020070#add_executable(test-gsm ${test_gsm_sources})
piotr437f5462014-02-04 17:57:25 +010071
piotr7f3f3662014-07-08 16:47:53 +020072#target_link_libraries(
73# test-gsm
74# ${GNURADIO_RUNTIME_LIBRARIES}
75# ${Boost_LIBRARIES}
76# ${CPPUNIT_LIBRARIES}
77# gnuradio-gsm
78#)
piotr437f5462014-02-04 17:57:25 +010079
piotr7f3f3662014-07-08 16:47:53 +020080#GR_ADD_TEST(test_gsm test-gsm)