blob: 8d4c7216a8a801d914920806d806859c1549f932 [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
33)
34
35add_library(gnuradio-gsm SHARED ${gsm_sources})
36target_link_libraries(gnuradio-gsm ${Boost_LIBRARIES} ${GNURADIO_RUNTIME_LIBRARIES})
37set_target_properties(gnuradio-gsm PROPERTIES DEFINE_SYMBOL "gnuradio_gsm_EXPORTS")
38
39########################################################################
40# Install built library files
41########################################################################
42install(TARGETS gnuradio-gsm
43 LIBRARY DESTINATION lib${LIB_SUFFIX} # .so/.dylib file
44 ARCHIVE DESTINATION lib${LIB_SUFFIX} # .lib file
45 RUNTIME DESTINATION bin # .dll file
46)
47
48########################################################################
49# Build and register unit test
50########################################################################
51include(GrTest)
52
53include_directories(${CPPUNIT_INCLUDE_DIRS})
54
55list(APPEND test_gsm_sources
56 ${CMAKE_CURRENT_SOURCE_DIR}/test_gsm.cc
57 ${CMAKE_CURRENT_SOURCE_DIR}/qa_gsm.cc
58 ${CMAKE_CURRENT_SOURCE_DIR}/qa_receiver.cc
59)
60
61add_executable(test-gsm ${test_gsm_sources})
62
63target_link_libraries(
64 test-gsm
65 ${GNURADIO_RUNTIME_LIBRARIES}
66 ${Boost_LIBRARIES}
67 ${CPPUNIT_LIBRARIES}
68 gnuradio-gsm
69)
70
71GR_ADD_TEST(test_gsm test-gsm)