2019-02-03 18:24:44 +00:00
|
|
|
# Copyright (C) 2012-2019 (see AUTHORS file for a list of contributors)
|
2012-12-24 02:33:50 +00:00
|
|
|
#
|
|
|
|
# This file is part of GNSS-SDR.
|
|
|
|
#
|
|
|
|
# GNSS-SDR 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 of the License, or
|
2014-06-28 01:55:57 +00:00
|
|
|
# (at your option) any later version.
|
2012-12-24 02:33:50 +00:00
|
|
|
#
|
|
|
|
# GNSS-SDR 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
|
2018-05-13 20:49:11 +00:00
|
|
|
# along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
|
2012-12-24 02:33:50 +00:00
|
|
|
#
|
|
|
|
|
2018-11-18 20:24:54 +00:00
|
|
|
set(CHANNEL_FSM_SOURCES
|
|
|
|
channel_fsm.cc
|
2016-04-18 12:17:09 +00:00
|
|
|
channel_msg_receiver_cc.cc
|
2018-11-21 23:35:21 +00:00
|
|
|
)
|
2018-11-18 20:24:54 +00:00
|
|
|
|
|
|
|
set(CHANNEL_FSM_HEADERS
|
|
|
|
channel_fsm.h
|
2018-10-04 20:35:44 +00:00
|
|
|
channel_msg_receiver_cc.h
|
2019-07-16 17:20:37 +00:00
|
|
|
)
|
2012-12-24 02:33:50 +00:00
|
|
|
|
2016-05-23 17:51:59 +00:00
|
|
|
list(SORT CHANNEL_FSM_HEADERS)
|
2018-10-04 20:35:44 +00:00
|
|
|
list(SORT CHANNEL_FSM_SOURCES)
|
|
|
|
|
2014-06-28 01:55:57 +00:00
|
|
|
source_group(Headers FILES ${CHANNEL_FSM_HEADERS})
|
2016-04-21 16:54:08 +00:00
|
|
|
|
2019-02-10 17:34:28 +00:00
|
|
|
add_library(channel_libs ${CHANNEL_FSM_SOURCES} ${CHANNEL_FSM_HEADERS})
|
2019-02-04 21:44:45 +00:00
|
|
|
|
2019-02-10 17:34:28 +00:00
|
|
|
target_link_libraries(channel_libs
|
2019-02-03 18:24:44 +00:00
|
|
|
PUBLIC
|
2019-07-16 17:20:37 +00:00
|
|
|
core_system_parameters
|
2019-02-03 18:24:44 +00:00
|
|
|
Gnuradio::runtime
|
2019-03-04 07:12:50 +00:00
|
|
|
Gnuradio::pmt
|
2019-02-03 18:24:44 +00:00
|
|
|
PRIVATE
|
2019-07-21 10:55:59 +00:00
|
|
|
core_libs
|
2019-09-07 10:36:19 +00:00
|
|
|
Boost::headers
|
2019-02-04 21:44:45 +00:00
|
|
|
Gflags::gflags
|
2019-02-03 18:24:44 +00:00
|
|
|
Glog::glog
|
|
|
|
)
|
|
|
|
|
2019-07-21 10:55:59 +00:00
|
|
|
target_include_directories(channel_libs
|
|
|
|
PUBLIC
|
|
|
|
${CMAKE_SOURCE_DIR}/src/core/receiver
|
|
|
|
)
|
|
|
|
|
2019-02-21 08:59:06 +00:00
|
|
|
if(ENABLE_CLANG_TIDY)
|
|
|
|
if(CLANG_TIDY_EXE)
|
|
|
|
set_target_properties(channel_libs
|
|
|
|
PROPERTIES
|
|
|
|
CXX_CLANG_TIDY "${DO_CLANG_TIDY}"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2019-02-10 17:34:28 +00:00
|
|
|
set_property(TARGET channel_libs
|
2019-02-03 18:24:44 +00:00
|
|
|
APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
|
|
|
)
|