blob: 8899310c4e92538b3b3c56ca0084e1649356c99b [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
25include_directories(${Boost_INCLUDE_DIR})
26link_directories(${Boost_LIBRARY_DIRS})
27
28list(APPEND gsm_sources
29 receiver_impl.cc
30 receiver_config.cc
31 viterbi_detector.cc
32 sch.c
piotr7c82b172014-02-08 14:15:27 +010033 bursts_printer_impl.cc
piotr437f5462014-02-04 17:57:25 +010034)
35
36add_library(gnuradio-gsm SHARED ${gsm_sources})
piotr3f1ea812014-04-17 10:56:08 +020037target_link_libraries(gnuradio-gsm ${Boost_LIBRARIES} ${GNURADIO_RUNTIME_LIBRARIES}
38 boost_iostreams
39 boost_system
40 boost_filesystem
41)
piotr437f5462014-02-04 17:57:25 +010042set_target_properties(gnuradio-gsm PROPERTIES DEFINE_SYMBOL "gnuradio_gsm_EXPORTS")
43
44########################################################################
45# Install built library files
46########################################################################
47install(TARGETS gnuradio-gsm
48 LIBRARY DESTINATION lib${LIB_SUFFIX} # .so/.dylib file
49 ARCHIVE DESTINATION lib${LIB_SUFFIX} # .lib file
50 RUNTIME DESTINATION bin # .dll file
51)
52
53########################################################################
54# Build and register unit test
55########################################################################
56include(GrTest)
57
58include_directories(${CPPUNIT_INCLUDE_DIRS})
59
60list(APPEND test_gsm_sources
61 ${CMAKE_CURRENT_SOURCE_DIR}/test_gsm.cc
62 ${CMAKE_CURRENT_SOURCE_DIR}/qa_gsm.cc
63 ${CMAKE_CURRENT_SOURCE_DIR}/qa_receiver.cc
64)
65
66add_executable(test-gsm ${test_gsm_sources})
67
68target_link_libraries(
69 test-gsm
70 ${GNURADIO_RUNTIME_LIBRARIES}
71 ${Boost_LIBRARIES}
72 ${CPPUNIT_LIBRARIES}
73 gnuradio-gsm
74)
75
76GR_ADD_TEST(test_gsm test-gsm)