Fixed typo in root CMakeLists.txt

This commit is contained in:
Ryzerth 2020-10-24 15:33:00 +02:00
parent 62368e35a7
commit 3fdd2477e5
3 changed files with 47 additions and 47 deletions

View File

@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.13) cmake_minimum_required(VERSION 3.13)
project(sdrpp_core) project(sdrpp)
# Cross platform modules # Cross platform modules
add_subdirectory("core") add_subdirectory("core")

View File

@ -1,43 +1,43 @@
{ {
"audio": { "audio": {
"Radio": { "Radio": {
"device": "default", "device": "default",
"sampleRate": 48000.0, "sampleRate": 48000.0,
"volume": 0.5148147940635681 "volume": 0.1666666716337204
}, },
"Radio 1": { "Radio 1": {
"device": "Speakers (Realtek High Definition Audio)", "device": "Speakers (Realtek High Definition Audio)",
"sampleRate": 48000.0, "sampleRate": 48000.0,
"volume": 0.609375 "volume": 0.609375
}, },
"Radio 2": { "Radio 2": {
"device": "CABLE Input (VB-Audio Virtual Cable)", "device": "CABLE Input (VB-Audio Virtual Cable)",
"sampleRate": 48000.0, "sampleRate": 48000.0,
"volume": 1.0 "volume": 1.0
} }
}, },
"bandPlan": "General", "bandPlan": "General",
"bandPlanEnabled": true, "bandPlanEnabled": true,
"fftHeight": 298, "fftHeight": 298,
"frequency": 99000000, "frequency": 77500,
"max": 0.0, "max": 0.0,
"maximized": true, "maximized": true,
"menuOrder": [ "menuOrder": [
"Source", "Source",
"Radio", "Radio",
"Recorder", "Recorder",
"Audio", "Audio",
"Scripting", "Scripting",
"Band Plan", "Band Plan",
"Display" "Display"
], ],
"menuWidth": 300, "menuWidth": 300,
"min": -53.676475524902344, "min": -53.676475524902344,
"showWaterfall": true, "showWaterfall": true,
"source": "", "source": "",
"sourceSettings": {}, "sourceSettings": {},
"windowSize": { "windowSize": {
"h": 720, "h": 720,
"w": 1280 "w": 1280
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"Radio": "./radio/radio.so", "Radio": "./radio/Release/radio.dll",
"Recorder": "./recorder/recorder.so", "Recorder": "./recorder/Release/recorder.dll",
"Soapy": "./soapy/soapy.so", "Soapy": "./soapy/Release/soapy.dll",
"RTLTCPSource": "./rtl_tcp_source/rtl_tcp_source.so" "RTLTCPSource": "./rtl_tcp_source/Release/rtl_tcp_source.dll"
} }