2020-01-13 00:49:00 +00:00
|
|
|
# Copyright (C) 2012-2020 (see AUTHORS file for a list of contributors)
|
2012-12-24 02:33:50 +00:00
|
|
|
#
|
2020-02-11 23:04:29 +00:00
|
|
|
# GNSS-SDR is a software-defined Global Navigation Satellite Systems receiver
|
|
|
|
#
|
2012-12-24 02:33:50 +00:00
|
|
|
# This file is part of GNSS-SDR.
|
|
|
|
#
|
2020-02-08 00:20:02 +00:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2012-12-24 02:33:50 +00:00
|
|
|
#
|
|
|
|
|
2019-04-20 16:50:22 +00:00
|
|
|
protobuf_generate_cpp(PROTO_SRCS PROTO_HDRS ${CMAKE_SOURCE_DIR}/docs/protobuf/monitor_pvt.proto)
|
2014-09-01 18:38:31 +00:00
|
|
|
|
2018-11-18 20:24:54 +00:00
|
|
|
set(PVT_LIB_SOURCES
|
2020-07-21 11:12:57 +00:00
|
|
|
pvt_conf.cc
|
2018-11-21 23:35:21 +00:00
|
|
|
pvt_solution.cc
|
2020-07-21 11:12:57 +00:00
|
|
|
geojson_printer.cc
|
2018-11-21 23:35:21 +00:00
|
|
|
gpx_printer.cc
|
2020-07-21 11:12:57 +00:00
|
|
|
kml_printer.cc
|
2018-11-21 23:35:21 +00:00
|
|
|
nmea_printer.cc
|
2020-07-21 11:12:57 +00:00
|
|
|
rinex_printer.cc
|
2018-11-21 23:35:21 +00:00
|
|
|
rtcm_printer.cc
|
2019-03-05 11:33:54 +00:00
|
|
|
rtcm.cc
|
2018-11-21 23:35:21 +00:00
|
|
|
rtklib_solver.cc
|
2019-01-21 10:59:29 +00:00
|
|
|
monitor_pvt_udp_sink.cc
|
2012-12-24 02:33:50 +00:00
|
|
|
)
|
|
|
|
|
2018-11-18 20:24:54 +00:00
|
|
|
set(PVT_LIB_HEADERS
|
2020-07-21 11:12:57 +00:00
|
|
|
pvt_conf.h
|
2018-11-21 23:35:21 +00:00
|
|
|
pvt_solution.h
|
2020-07-21 11:12:57 +00:00
|
|
|
geojson_printer.h
|
2018-11-21 23:35:21 +00:00
|
|
|
gpx_printer.h
|
2020-07-21 11:12:57 +00:00
|
|
|
kml_printer.h
|
2018-11-21 23:35:21 +00:00
|
|
|
nmea_printer.h
|
2020-07-21 11:12:57 +00:00
|
|
|
rinex_printer.h
|
2018-11-21 23:35:21 +00:00
|
|
|
rtcm_printer.h
|
2019-03-05 11:33:54 +00:00
|
|
|
rtcm.h
|
2018-11-21 23:35:21 +00:00
|
|
|
rtklib_solver.h
|
2019-01-21 10:59:29 +00:00
|
|
|
monitor_pvt_udp_sink.h
|
|
|
|
monitor_pvt.h
|
2019-04-20 16:50:22 +00:00
|
|
|
serdes_monitor_pvt.h
|
2018-10-04 20:35:44 +00:00
|
|
|
)
|
|
|
|
|
2016-05-23 17:51:59 +00:00
|
|
|
list(SORT PVT_LIB_HEADERS)
|
2018-10-04 20:35:44 +00:00
|
|
|
list(SORT PVT_LIB_SOURCES)
|
|
|
|
|
2020-06-12 22:32:40 +00:00
|
|
|
if(USE_CMAKE_TARGET_SOURCES)
|
2020-06-08 18:04:01 +00:00
|
|
|
add_library(pvt_libs STATIC)
|
|
|
|
target_sources(pvt_libs
|
|
|
|
PRIVATE
|
|
|
|
${PROTO_SRCS}
|
|
|
|
${PROTO_HDRS}
|
|
|
|
${PVT_LIB_SOURCES}
|
|
|
|
PUBLIC
|
|
|
|
${PVT_LIB_HEADERS}
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
source_group(Headers FILES ${PVT_LIB_HEADERS} ${PROTO_HDRS})
|
|
|
|
add_library(pvt_libs ${PVT_LIB_SOURCES} ${PROTO_SRCS} ${PVT_LIB_HEADERS} ${PROTO_HDRS})
|
|
|
|
endif()
|
2019-02-04 21:44:45 +00:00
|
|
|
|
2019-06-10 19:41:13 +00:00
|
|
|
if(${FILESYSTEM_FOUND})
|
|
|
|
target_compile_definitions(pvt_libs PRIVATE -DHAS_STD_FILESYSTEM=1)
|
2019-06-12 18:39:29 +00:00
|
|
|
if(${find_experimental})
|
|
|
|
target_compile_definitions(pvt_libs PRIVATE -DHAS_STD_FILESYSTEM_EXPERIMENTAL=1)
|
|
|
|
endif()
|
2019-06-10 19:41:13 +00:00
|
|
|
target_link_libraries(pvt_libs PRIVATE std::filesystem)
|
|
|
|
else()
|
|
|
|
target_link_libraries(pvt_libs PRIVATE Boost::filesystem Boost::system)
|
|
|
|
endif()
|
|
|
|
|
2019-02-10 17:34:28 +00:00
|
|
|
target_link_libraries(pvt_libs
|
2019-02-03 18:24:44 +00:00
|
|
|
PUBLIC
|
|
|
|
Boost::date_time
|
2019-04-20 16:50:22 +00:00
|
|
|
protobuf::libprotobuf
|
2019-02-10 17:34:28 +00:00
|
|
|
core_system_parameters
|
2020-06-14 11:00:36 +00:00
|
|
|
algorithms_libs_rtklib
|
2019-02-03 18:24:44 +00:00
|
|
|
PRIVATE
|
2019-02-04 21:44:45 +00:00
|
|
|
Gflags::gflags
|
2019-02-03 18:24:44 +00:00
|
|
|
Glog::glog
|
|
|
|
Matio::matio
|
|
|
|
)
|
|
|
|
|
2019-04-20 16:50:22 +00:00
|
|
|
get_filename_component(PROTO_INCLUDE_HEADERS ${PROTO_HDRS} DIRECTORY)
|
|
|
|
|
2019-02-10 17:34:28 +00:00
|
|
|
target_include_directories(pvt_libs
|
2019-02-04 21:44:45 +00:00
|
|
|
PUBLIC
|
2019-02-10 00:13:02 +00:00
|
|
|
${CMAKE_SOURCE_DIR}/src/core/receiver
|
2020-06-11 13:16:40 +00:00
|
|
|
SYSTEM ${PROTO_INCLUDE_HEADERS}
|
2020-07-21 11:12:57 +00:00
|
|
|
PRIVATE
|
|
|
|
${CMAKE_SOURCE_DIR}/src/algorithms/libs # for gnss_sdr_make_unique.h
|
2019-02-04 21:44:45 +00:00
|
|
|
)
|
2019-02-03 18:24:44 +00:00
|
|
|
|
2019-02-10 17:34:28 +00:00
|
|
|
target_compile_definitions(pvt_libs PRIVATE -DGNSS_SDR_VERSION="${VERSION}")
|
2019-02-03 18:24:44 +00:00
|
|
|
|
2020-06-12 22:32:40 +00:00
|
|
|
if(USE_BOOST_ASIO_IO_CONTEXT)
|
2019-05-08 14:15:59 +00:00
|
|
|
target_compile_definitions(pvt_libs
|
|
|
|
PUBLIC
|
2020-06-14 11:00:36 +00:00
|
|
|
-DUSE_BOOST_ASIO_IO_CONTEXT=1
|
2019-05-08 14:15:59 +00:00
|
|
|
)
|
|
|
|
endif()
|
|
|
|
|
2019-05-26 00:09:53 +00:00
|
|
|
# Fix for Boost Asio < 1.70
|
2020-01-13 00:49:00 +00:00
|
|
|
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
|
2019-07-22 12:13:57 +00:00
|
|
|
if((CMAKE_CXX_COMPILER_ID MATCHES "Clang") AND (Boost_VERSION_STRING VERSION_LESS 1.70.0))
|
2019-05-26 00:09:53 +00:00
|
|
|
if(${has_string_view})
|
|
|
|
target_compile_definitions(pvt_libs
|
|
|
|
PUBLIC
|
|
|
|
-DBOOST_ASIO_HAS_STD_STRING_VIEW=1
|
|
|
|
)
|
|
|
|
else()
|
|
|
|
target_compile_definitions(pvt_libs
|
|
|
|
PUBLIC
|
|
|
|
-DBOOST_ASIO_HAS_STD_STRING_VIEW=0
|
|
|
|
)
|
|
|
|
endif()
|
2019-03-05 11:33:54 +00:00
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2019-02-10 17:34:28 +00:00
|
|
|
set_property(TARGET pvt_libs APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES
|
2019-02-03 18:24:44 +00:00
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
2018-10-04 20:35:44 +00:00
|
|
|
)
|