1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-04-06 02:37:20 +00:00

Merge pull request #2 from carlesfernandez/osnma-cesare_fix1

Build fixes
This commit is contained in:
cesaaargm 2024-06-12 20:47:54 +02:00 committed by GitHub
commit b39087f609
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 10 additions and 3 deletions

View File

@ -23,7 +23,6 @@
#include "gnss_satellite.h"
#include "osnma_dsm_reader.h" // for OSNMA_DSM_Reader
#include "osnma_helper.h"
#include <glog/logging.h> // for DLOG
#include <gnuradio/io_signature.h> // for gr::io_signature::make
#include <cmath>
#include <cstddef>
@ -32,6 +31,12 @@
#include <numeric>
#include <typeinfo> // for typeid
#if USE_GLOG_AND_GFLAGS
#include <glog/logging.h> // for DLOG
#else
#include <absl/log/log.h>
#endif
#if HAS_GENERIC_LAMBDA
#else
#include <boost/bind/bind.hpp>

View File

@ -96,8 +96,8 @@ set(SYSTEM_PARAMETERS_HEADERS
Galileo_OSNMA.h
osnma_data.h
osnma_dsm_reader.h
osnma_helper.cc
osnma_helper.h
osnma_helper.cc
osnma_helper.h
)
list(SORT SYSTEM_PARAMETERS_HEADERS)
@ -123,6 +123,8 @@ target_link_libraries(core_system_parameters
PUBLIC
Boost::date_time
Boost::serialization
PRIVATE
Pugixml::pugixml
)
if(ENABLE_GLOG_AND_GFLAGS)