1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-09-28 15:08:51 +00:00
gnss-sdr/src/algorithms/PVT/libs/CMakeLists.txt

123 lines
3.3 KiB
CMake
Raw Normal View History

# GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
# This file is part of GNSS-SDR.
#
# SPDX-FileCopyrightText: 2010-2020 C. Fernandez-Prades cfernandez(at)cttc.es
# SPDX-License-Identifier: BSD-3-Clause
protobuf_generate_cpp(PROTO_SRCS PROTO_HDRS ${CMAKE_SOURCE_DIR}/docs/protobuf/monitor_pvt.proto)
2021-02-15 09:56:30 +00:00
protobuf_generate_cpp(PROTO_SRCS2 PROTO_HDRS2 ${CMAKE_SOURCE_DIR}/docs/protobuf/monitor_gps_ephemeris.proto)
protobuf_generate_cpp(PROTO_SRCS3 PROTO_HDRS3 ${CMAKE_SOURCE_DIR}/docs/protobuf/monitor_galileo_ephemeris.proto)
2018-11-18 20:24:54 +00:00
set(PVT_LIB_SOURCES
2020-07-21 11:12:57 +00:00
pvt_conf.cc
pvt_solution.cc
2020-07-21 11:12:57 +00:00
geojson_printer.cc
gpx_printer.cc
2020-07-21 11:12:57 +00:00
kml_printer.cc
nmea_printer.cc
2020-07-21 11:12:57 +00:00
rinex_printer.cc
rtcm_printer.cc
rtcm.cc
rtklib_solver.cc
2019-01-21 10:59:29 +00:00
monitor_pvt_udp_sink.cc
2021-02-15 09:56:30 +00:00
monitor_ephemeris_udp_sink.cc
)
2018-11-18 20:24:54 +00:00
set(PVT_LIB_HEADERS
2020-07-21 11:12:57 +00:00
pvt_conf.h
pvt_solution.h
2020-07-21 11:12:57 +00:00
geojson_printer.h
gpx_printer.h
2020-07-21 11:12:57 +00:00
kml_printer.h
nmea_printer.h
2020-07-21 11:12:57 +00:00
rinex_printer.h
rtcm_printer.h
rtcm.h
rtklib_solver.h
2019-01-21 10:59:29 +00:00
monitor_pvt_udp_sink.h
monitor_pvt.h
serdes_monitor_pvt.h
2021-02-15 09:56:30 +00:00
serdes_galileo_eph.h
serdes_gps_eph.h
monitor_ephemeris_udp_sink.h
)
list(SORT PVT_LIB_HEADERS)
list(SORT PVT_LIB_SOURCES)
if(USE_CMAKE_TARGET_SOURCES)
add_library(pvt_libs STATIC)
target_sources(pvt_libs
PRIVATE
${PROTO_SRCS}
2021-02-15 09:56:30 +00:00
${PROTO_SRCS2}
${PROTO_SRCS3}
${PROTO_HDRS}
2021-02-15 09:56:30 +00:00
${PROTO_HDRS2}
${PROTO_HDRS3}
${PVT_LIB_SOURCES}
PUBLIC
${PVT_LIB_HEADERS}
)
else()
2021-02-15 09:56:30 +00:00
source_group(Headers FILES ${PVT_LIB_HEADERS} ${PROTO_HDRS} ${PROTO_HDRS2} ${PROTO_HDRS3})
add_library(pvt_libs ${PVT_LIB_SOURCES} ${PROTO_SRCS} ${PROTO_SRCS2} ${PROTO_SRCS3} ${PVT_LIB_HEADERS} ${PROTO_HDRS} ${PROTO_HDRS2} ${PROTO_HDRS3})
endif()
2019-02-04 21:44:45 +00:00
target_link_libraries(pvt_libs
2019-02-03 18:24:44 +00:00
PUBLIC
Boost::date_time
protobuf::libprotobuf
core_system_parameters
2020-06-14 11:00:36 +00:00
algorithms_libs_rtklib
2019-02-03 18:24:44 +00:00
PRIVATE
algorithms_libs
2019-02-04 21:44:45 +00:00
Gflags::gflags
2019-02-03 18:24:44 +00:00
Glog::glog
Matio::matio
)
get_filename_component(PROTO_INCLUDE_HEADERS_DIR ${PROTO_HDRS} DIRECTORY)
# for concurrent_queue.h
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
)
# Do not apply clang-tidy fixes to protobuf generated headers
target_include_directories(pvt_libs
SYSTEM PUBLIC
${PROTO_INCLUDE_HEADERS_DIR}
2019-02-04 21:44:45 +00:00
)
2019-02-03 18:24:44 +00:00
target_compile_definitions(pvt_libs PRIVATE -DGNSS_SDR_VERSION="${VERSION}")
2019-02-03 18:24:44 +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()
# Fix for Boost Asio < 1.70
if(${CMAKE_SYSTEM_NAME} MATCHES "Darwin")
if((CMAKE_CXX_COMPILER_ID MATCHES "Clang") AND (Boost_VERSION_STRING VERSION_LESS 1.70.0))
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()
endif()
endif()
set_property(TARGET pvt_libs APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES
2019-02-03 18:24:44 +00:00
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
)