Merge pull request #1816 from srcejon/cmakepresets_msvc

Add windows-default CMake preset for building with Visual Studio
pull/1822/head
Edouard Griffiths 2023-09-11 08:14:50 +02:00 zatwierdzone przez GitHub
commit 9476cdde59
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 94 dodań i 52 usunięć

Wyświetl plik

@ -32,6 +32,44 @@
},
"warnings": {
"dev": false
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [ "Linux" ]
}
}
},
{
"name": "default-windows",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"DEBUG_OUTPUT": "ON",
"RX_SAMPLE_24BIT": "ON",
"ARCH_OPT": "SSE4_2",
"HIDE_CONSOLE": "OFF",
"ENABLE_AIRSPY": "ON",
"ENABLE_AIRSPYHF": "ON",
"ENABLE_BLADERF": "ON",
"ENABLE_HACKRF": "ON",
"ENABLE_IIO": "ON",
"ENABLE_MIRISDR": "OFF",
"ENABLE_PERSEUS": "ON",
"ENABLE_RTLSDR": "ON",
"ENABLE_SDRPLAY": "ON",
"ENABLE_SOAPYSDR": "ON",
"ENABLE_XTRX": "ON",
"ENABLE_USRP": "ON",
"BUILD_SERVER": "OFF",
"CMAKE_PREFIX_PATH": "C:/Qt/5.15.2/msvc2019_64;C:/Applications/boost_1_81_0"
},
"warnings": {
"dev": false
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostOS": [ "Windows" ]
}
}
},
{
@ -48,6 +86,10 @@
"name": "default",
"configurePreset": "default"
},
{
"name": "default-windows",
"configurePreset": "default-windows"
},
{
"name": "default-qt6",
"configurePreset": "default-qt6"