From a24972843e4fcdd6919375b00c628cf5be6443aa Mon Sep 17 00:00:00 2001 From: Ryzerth Date: Mon, 1 Mar 2021 17:39:39 +0100 Subject: [PATCH] Fixed bad argument in compile args --- core/CMakeLists.txt | 2 +- core/src/credits.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt index 2a50f142..8efd53c1 100644 --- a/core/CMakeLists.txt +++ b/core/CMakeLists.txt @@ -6,7 +6,7 @@ if (MSVC) set(CMAKE_CXX_FLAGS "-O2 /std:c++17 /EHsc") set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON) else() - set(CMAKE_CXX_FLAGS "-g -O3 -std=c++17 -fpermissive") + set(CMAKE_CXX_FLAGS "-O3 -std=c++17 -fpermissive") endif (MSVC) add_definitions(-DSDRPP_IS_CORE) diff --git a/core/src/credits.cpp b/core/src/credits.cpp index 9a2647ca..b27ac697 100644 --- a/core/src/credits.cpp +++ b/core/src/credits.cpp @@ -19,7 +19,7 @@ namespace sdrpp_credits { const char* libraries[] = { "Dear ImGui (ocornut)", "json (nlohmann)", - "RtlAudio", + "RtAudio", "SoapySDR (PothosWare)", "spdlog (gabime)", };