1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-06-13 16:56:52 +00:00
gnss-sdr/src/algorithms/signal_source/libs/CMakeLists.txt

85 lines
2.3 KiB
CMake
Raw Normal View History

# Copyright (C) 2012-2019 (see AUTHORS file for a list of contributors)
2015-05-10 12:57:43 +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
# (at your option) any later version.
#
# 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
# along with GNSS-SDR. If not, see <https://www.gnu.org/licenses/>.
2015-05-10 12:57:43 +00:00
#
if(ENABLE_FMCOMMS2 OR ENABLE_AD9361)
set(OPT_SIGNAL_SOURCE_LIB_SOURCES ad9361_manager.cc)
set(OPT_SIGNAL_SOURCE_LIB_HEADERS ad9361_manager.h)
2018-11-24 17:40:34 +00:00
endif()
if(ENABLE_FPGA OR ENABLE_AD9361)
set(OPT_SIGNAL_SOURCE_LIB_SOURCES ${OPT_SIGNAL_SOURCE_LIB_SOURCES} fpga_switch.cc)
set(OPT_SIGNAL_SOURCE_LIB_HEADERS ${OPT_SIGNAL_SOURCE_LIB_HEADERS} fpga_switch.h)
2018-11-24 17:40:34 +00:00
endif()
2018-05-01 06:33:41 +00:00
set(SIGNAL_SOURCE_LIB_SOURCES
rtl_tcp_commands.cc
rtl_tcp_dongle_info.cc
2019-02-10 00:13:02 +00:00
gnss_sdr_valve.cc
${OPT_SIGNAL_SOURCE_LIB_SOURCES}
)
2018-11-18 20:24:54 +00:00
2018-05-01 06:33:41 +00:00
set(SIGNAL_SOURCE_LIB_HEADERS
rtl_tcp_commands.h
rtl_tcp_dongle_info.h
2019-02-10 00:13:02 +00:00
gnss_sdr_valve.h
${OPT_SIGNAL_SOURCE_LIB_HEADERS}
)
list(SORT SIGNAL_SOURCE_LIB_HEADERS)
list(SORT SIGNAL_SOURCE_LIB_SOURCES)
source_group(Headers FILES ${SIGNAL_SOURCE_LIB_HEADERS})
2019-02-03 18:24:44 +00:00
add_library(signal_source_libs ${SIGNAL_SOURCE_LIB_SOURCES} ${SIGNAL_SOURCE_LIB_HEADERS})
2019-02-04 21:44:45 +00:00
target_link_libraries(signal_source_libs
2019-02-03 18:24:44 +00:00
PUBLIC
Boost::headers
2019-02-10 00:13:02 +00:00
Gnuradio::runtime
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
core_libs
)
target_include_directories(signal_source_libs
PUBLIC
${CMAKE_SOURCE_DIR}/src/core/receiver
2019-02-03 18:24:44 +00:00
)
if(ENABLE_FMCOMMS2 OR ENABLE_AD9361)
target_link_libraries(signal_source_libs
PUBLIC
Iio::iio
)
endif()
2019-02-03 18:24:44 +00:00
if(ENABLE_CLANG_TIDY)
if(CLANG_TIDY_EXE)
set_target_properties(signal_source_libs
PROPERTIES
CXX_CLANG_TIDY "${DO_CLANG_TIDY}"
)
endif()
endif()
set_property(TARGET signal_source_libs APPEND PROPERTY INTERFACE_INCLUDE_DIRECTORIES
2019-02-03 18:24:44 +00:00
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}>
)