1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2025-04-07 19:26:46 +00:00

Merge 5975a5590da00ce38172798c2134c6644d570ab0 into b0b41b194f8475afe5c67fb001fc521c88a3584f

This commit is contained in:
xguerreropau 2025-03-25 06:43:33 +01:00 committed by GitHub
commit 089d2c5780
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 47 additions and 0 deletions

42
CMakePresets.json Normal file
View File

@ -0,0 +1,42 @@
{
"version": 8,
"configurePresets": [
{
"name": "debug",
"description": "Basic debug flags",
"cacheVariables": {
"CMAKE_INSTALL_PREFIX": "${sourceDir}/out/install/${presetName}",
"CMAKE_BUILD_TYPE": "Debug",
"ENABLE_RAW_UDP": "ON",
"ENABLE_ZMQ": "ON",
"ENABLE_GLOG_AND_GFLAGS": "ON",
"ENABLE_LOG": "ON",
"ENABLE_UNIT_TESTING": "ON"
}
},
{
"name": "ubuntu-ad936x",
"description": "Common flags for a Ubuntu with an ad936x",
"binaryDir": "${sourceDir}/build-ubuntu-ad936x",
"inherits": "debug",
"cacheVariables": {
"CMAKE_C_COMPILER": "/usr/bin/gcc",
"CMAKE_CXX_COMPILER": "/usr/bin/g++",
"ENABLE_UHD": "ON",
"ENABLE_OSMOSDR": "ON",
"ENABLE_PLUTOSDR": "ON",
"ENABLE_AD936X_SDR": "ON"
}
}
],
"buildPresets": [
{
"name": "debug",
"configurePreset": "debug"
},
{
"name": "ubuntu-ad936x",
"configurePreset": "ubuntu-ad936x"
}
]
}

View File

@ -0,0 +1,5 @@
# GNSS-SDR is a Global Navigation Satellite System software-defined receiver.
# This file is part of GNSS-SDR.
#
# SPDX-FileCopyrightText: 2024 Xavier Guerrero-Pau xguerrero(at)cttc.es
# SPDX-License-Identifier: BSD-3-Clause