mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-16 05:00:35 +00:00
4d0d263280
Update license headers to SPDX format (see https://spdx.org/) Add license to all files Add CI job in GitHub Actions to ensure compliance
20 lines
552 B
CMake
20 lines
552 B
CMake
# Copyright (C) 2011-2018 (see AUTHORS file for a list of contributors)
|
|
#
|
|
# This file is part of GNSS-SDR.
|
|
#
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
find_program(SW_GENERATOR_BIN gnss_sim
|
|
PATHS /usr/bin
|
|
/usr/local/bin
|
|
/opt/local/bin
|
|
${CMAKE_INSTALL_PREFIX}/bin
|
|
${GNSSSIMULATOR_ROOT}/bin
|
|
$ENV{GNSSSIMULATOR_ROOT}/bin
|
|
PATH_SUFFIXES bin
|
|
)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(GNSSSIMULATOR DEFAULT_MSG SW_GENERATOR_BIN)
|
|
mark_as_advanced(SW_GENERATOR_BIN)
|