1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-01-31 11:19:18 +00:00

Build fixes

This commit is contained in:
Carles Fernandez 2024-06-11 14:16:36 +02:00
parent 8de00f92bf
commit 0e168a8ff0
No known key found for this signature in database
GPG Key ID: 4C583C52B0C3877D
2 changed files with 10 additions and 3 deletions

View File

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

View File

@ -123,6 +123,8 @@ target_link_libraries(core_system_parameters
PUBLIC PUBLIC
Boost::date_time Boost::date_time
Boost::serialization Boost::serialization
PRIVATE
Pugixml::pugixml
) )
if(ENABLE_GLOG_AND_GFLAGS) if(ENABLE_GLOG_AND_GFLAGS)