2015-01-08 18:49:59 +00:00
|
|
|
# Copyright (C) 2012-2015 (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
|
|
|
|
# along with GNSS-SDR. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
2015-07-24 15:21:25 +00:00
|
|
|
if(ENABLE_CUDA)
|
2015-10-08 12:37:51 +00:00
|
|
|
set(OPT_TRACKING_ADAPTERS ${OPT_TRACKING_ADAPTERS} gps_l1_ca_dll_pll_tracking_gpu.cc)
|
|
|
|
set(OPT_TRACKING_INCLUDE_DIRS ${OPT_TRACKING_INCLUDE_DIRS} ${CUDA_INCLUDE_DIRS})
|
2015-07-24 15:21:25 +00:00
|
|
|
endif(ENABLE_CUDA)
|
2013-12-14 10:23:33 +00:00
|
|
|
|
2012-12-24 02:33:50 +00:00
|
|
|
set(TRACKING_ADAPTER_SOURCES
|
|
|
|
galileo_e1_dll_pll_veml_tracking.cc
|
2014-10-17 00:24:54 +00:00
|
|
|
galileo_volk_e1_dll_pll_veml_tracking.cc
|
2012-12-24 02:33:50 +00:00
|
|
|
galileo_e1_tcp_connector_tracking.cc
|
|
|
|
gps_l1_ca_dll_fll_pll_tracking.cc
|
|
|
|
gps_l1_ca_dll_pll_optim_tracking.cc
|
|
|
|
gps_l1_ca_dll_pll_tracking.cc
|
2015-11-27 11:53:27 +00:00
|
|
|
gps_l1_ca_dll_pll_c_aid_tracking.cc
|
2012-12-24 02:33:50 +00:00
|
|
|
gps_l1_ca_tcp_connector_tracking.cc
|
2014-06-20 16:23:44 +00:00
|
|
|
galileo_e5a_dll_pll_tracking.cc
|
2015-04-30 15:48:21 +00:00
|
|
|
gps_l2_m_dll_pll_tracking.cc
|
2015-08-06 15:05:15 +00:00
|
|
|
${OPT_TRACKING_ADAPTERS}
|
2012-12-24 02:33:50 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
include_directories(
|
|
|
|
$(CMAKE_CURRENT_SOURCE_DIR)
|
|
|
|
${CMAKE_SOURCE_DIR}/src/core/system_parameters
|
|
|
|
${CMAKE_SOURCE_DIR}/src/core/interfaces
|
|
|
|
${CMAKE_SOURCE_DIR}/src/core/receiver
|
|
|
|
${CMAKE_SOURCE_DIR}/src/algorithms/tracking/gnuradio_blocks
|
|
|
|
${CMAKE_SOURCE_DIR}/src/algorithms/tracking/libs
|
|
|
|
${CMAKE_SOURCE_DIR}/src/algorithms/libs
|
2013-07-04 13:47:40 +00:00
|
|
|
${GLOG_INCLUDE_DIRS}
|
2013-07-06 11:34:44 +00:00
|
|
|
${GFlags_INCLUDE_DIRS}
|
2013-07-04 13:47:40 +00:00
|
|
|
${GNURADIO_RUNTIME_INCLUDE_DIRS}
|
2015-10-08 12:37:51 +00:00
|
|
|
${OPT_TRACKING_INCLUDE_DIRS}
|
2012-12-24 02:33:50 +00:00
|
|
|
)
|
|
|
|
|
2014-06-28 01:55:57 +00:00
|
|
|
file(GLOB TRACKING_ADAPTER_HEADERS "*.h")
|
|
|
|
add_library(tracking_adapters ${TRACKING_ADAPTER_SOURCES} ${TRACKING_ADAPTER_HEADERS})
|
|
|
|
source_group(Headers FILES ${TRACKING_ADAPTER_HEADERS})
|
2013-07-04 13:47:40 +00:00
|
|
|
target_link_libraries(tracking_adapters tracking_gr_blocks gnss_sp_libs)
|