blob: a07a876565ef2b0cce85f442a3fa603d57065849 [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
piotr437f5462014-02-04 17:57:25 +010030 viterbi_detector.cc
31 sch.c
piotr7f3f3662014-07-08 16:47:53 +020032 burst_printer/bursts_printer_impl.cc
piotrd73f0bb2014-04-24 11:58:52 +020033 )
piotr437f5462014-02-04 17:57:25 +010034
35add_library(gnuradio-gsm SHARED ${gsm_sources})
piotr3f1ea812014-04-17 10:56:08 +020036target_link_libraries(gnuradio-gsm ${Boost_LIBRARIES} ${GNURADIO_RUNTIME_LIBRARIES}
37 boost_iostreams
38 boost_system
39 boost_filesystem
40)
piotr437f5462014-02-04 17:57:25 +010041set_target_properties(gnuradio-gsm PROPERTIES DEFINE_SYMBOL "gnuradio_gsm_EXPORTS")
42
43########################################################################
44# Install built library files
45########################################################################
46install(TARGETS gnuradio-gsm
47 LIBRARY DESTINATION lib${LIB_SUFFIX} # .so/.dylib file
48 ARCHIVE DESTINATION lib${LIB_SUFFIX} # .lib file
49 RUNTIME DESTINATION bin # .dll file
50)
51
52########################################################################
53# Build and register unit test
54########################################################################
piotr7f3f3662014-07-08 16:47:53 +020055#include(GrTest)
piotr437f5462014-02-04 17:57:25 +010056
piotr7f3f3662014-07-08 16:47:53 +020057#include_directories(${CPPUNIT_INCLUDE_DIRS})
piotr437f5462014-02-04 17:57:25 +010058
piotr7f3f3662014-07-08 16:47:53 +020059#list(APPEND test_gsm_sources
60# ${CMAKE_CURRENT_SOURCE_DIR}/test_gsm.cc
61# ${CMAKE_CURRENT_SOURCE_DIR}/qa_gsm.cc
62# ${CMAKE_CURRENT_SOURCE_DIR}/qa_receiver.cc
63#)
piotr437f5462014-02-04 17:57:25 +010064
piotr7f3f3662014-07-08 16:47:53 +020065#add_executable(test-gsm ${test_gsm_sources})
piotr437f5462014-02-04 17:57:25 +010066
piotr7f3f3662014-07-08 16:47:53 +020067#target_link_libraries(
68# test-gsm
69# ${GNURADIO_RUNTIME_LIBRARIES}
70# ${Boost_LIBRARIES}
71# ${CPPUNIT_LIBRARIES}
72# gnuradio-gsm
73#)
piotr437f5462014-02-04 17:57:25 +010074
piotr7f3f3662014-07-08 16:47:53 +020075#GR_ADD_TEST(test_gsm test-gsm)