1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-18 11:09:56 +00:00

Fix building until gnss-sdr

This commit is contained in:
Carles Fernandez 2019-07-16 19:20:37 +02:00
parent 1313edd716
commit 50cfb6cdf5
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
5 changed files with 5 additions and 6 deletions

View File

@ -24,7 +24,7 @@ set(CHANNEL_FSM_SOURCES
set(CHANNEL_FSM_HEADERS
channel_fsm.h
channel_msg_receiver_cc.h
)
)
list(SORT CHANNEL_FSM_HEADERS)
list(SORT CHANNEL_FSM_SOURCES)
@ -35,15 +35,14 @@ add_library(channel_libs ${CHANNEL_FSM_SOURCES} ${CHANNEL_FSM_HEADERS})
target_link_libraries(channel_libs
PUBLIC
core_libs
core_system_parameters
Gnuradio::runtime
Gnuradio::pmt
core_system_parameters
core_receiver
PRIVATE
Boost::boost
Gflags::gflags
Glog::glog
core_receiver
)
if(ENABLE_CLANG_TIDY)

View File

@ -25,6 +25,7 @@ set(CORE_LIBS_SOURCES
gnss_sdr_supl_client.cc
gnss_sdr_sample_counter.cc
channel_status_msg_receiver.cc
channel_event.cc
)
set(CORE_LIBS_HEADERS
@ -34,6 +35,7 @@ set(CORE_LIBS_HEADERS
gnss_sdr_supl_client.h
gnss_sdr_sample_counter.h
channel_status_msg_receiver.h
channel_event.h
)
if(ENABLE_FPGA)

View File

@ -24,7 +24,6 @@ set(GNSS_RECEIVER_SOURCES
gnss_flowgraph.cc
in_memory_configuration.cc
tcp_cmd_interface.cc
channel_event.cc
command_event.cc
)
@ -38,7 +37,6 @@ set(GNSS_RECEIVER_HEADERS
concurrent_map.h
concurrent_queue.h
control_message.h
channel_event.h
command_event.h
)