2019-02-03 18:24:44 +00:00
|
|
|
# Copyright (C) 2012-2019 (see AUTHORS file for a list of contributors)
|
2012-12-24 02:33:50 +00:00
|
|
|
#
|
|
|
|
# This file is part of GNSS-SDR.
|
|
|
|
#
|
|
|
|
# GNSS-SDR is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
2014-06-28 01:55:57 +00:00
|
|
|
# (at your option) any later version.
|
2012-12-24 02:33:50 +00:00
|
|
|
#
|
|
|
|
# GNSS-SDR is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
2018-05-13 20:49:11 +00:00
|
|
|
# along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
|
2012-12-24 02:33:50 +00:00
|
|
|
#
|
|
|
|
|
2018-07-21 11:40:52 +00:00
|
|
|
|
2017-05-10 14:42:22 +00:00
|
|
|
set(PVT_ADAPTER_SOURCES
|
2018-11-21 23:35:21 +00:00
|
|
|
rtklib_pvt.cc
|
2013-09-10 08:44:02 +00:00
|
|
|
)
|
2012-12-24 02:33:50 +00:00
|
|
|
|
2018-10-04 20:35:44 +00:00
|
|
|
set(PVT_ADAPTER_HEADERS
|
2018-11-21 23:35:21 +00:00
|
|
|
rtklib_pvt.h
|
2018-10-04 20:35:44 +00:00
|
|
|
)
|
|
|
|
|
2014-06-28 01:55:57 +00:00
|
|
|
source_group(Headers FILES ${PVT_ADAPTER_HEADERS})
|
2018-11-21 23:35:21 +00:00
|
|
|
|
2019-02-04 21:44:45 +00:00
|
|
|
add_library(pvt_adapters ${PVT_ADAPTER_SOURCES} ${PVT_ADAPTER_HEADERS})
|
|
|
|
|
2018-11-21 23:35:21 +00:00
|
|
|
target_link_libraries(pvt_adapters
|
2019-02-03 18:24:44 +00:00
|
|
|
PUBLIC
|
2019-02-07 21:44:31 +00:00
|
|
|
pvt_gr_blocks
|
2019-03-04 07:12:50 +00:00
|
|
|
algorithms_libs_rtklib
|
2019-02-10 17:34:28 +00:00
|
|
|
core_system_parameters
|
2019-02-03 18:24:44 +00:00
|
|
|
PRIVATE
|
2019-02-26 00:38:48 +00:00
|
|
|
gnss_sdr_flags
|
|
|
|
pvt_libs
|
2019-02-03 18:24:44 +00:00
|
|
|
)
|
|
|
|
|
2019-02-10 00:13:02 +00:00
|
|
|
target_include_directories(pvt_adapters
|
|
|
|
PUBLIC
|
|
|
|
${CMAKE_SOURCE_DIR}/src/core/interfaces
|
|
|
|
)
|
|
|
|
|
2019-07-22 12:13:57 +00:00
|
|
|
if(Boost_VERSION_STRING VERSION_LESS 1.58.0)
|
2019-02-04 23:01:04 +00:00
|
|
|
target_compile_definitions(pvt_adapters PRIVATE -DOLD_BOOST=1)
|
2019-02-03 18:24:44 +00:00
|
|
|
endif()
|
|
|
|
|
2019-02-21 08:59:06 +00:00
|
|
|
if(ENABLE_CLANG_TIDY)
|
|
|
|
if(CLANG_TIDY_EXE)
|
|
|
|
set_target_properties(pvt_adapters
|
|
|
|
PROPERTIES
|
|
|
|
CXX_CLANG_TIDY "${DO_CLANG_TIDY}"
|
|
|
|
)
|
|
|
|
endif()
|
|
|
|
endif()
|
|
|
|
|
2019-02-03 18:24:44 +00:00
|
|
|
set_property(TARGET pvt_adapters
|
|
|
|
APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES
|
|
|
|
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
|
2018-11-21 23:35:21 +00:00
|
|
|
)
|