mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2025-01-12 19:27:11 +01:00
Radio Bugfix
This commit is contained in:
parent
db8f736d58
commit
51f84566c4
@ -91,6 +91,7 @@ namespace dsp {
|
|||||||
for (auto i = ++lnit; i < links.end(); i++) {
|
for (auto i = ++lnit; i < links.end(); i++) {
|
||||||
if (!(*i)->enabled) { continue; }
|
if (!(*i)->enabled) { continue; }
|
||||||
nextLink = *i;
|
nextLink = *i;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nextLink) {
|
if (nextLink) {
|
||||||
@ -133,6 +134,7 @@ namespace dsp {
|
|||||||
for (auto i = ++lnit; i < links.end(); i++) {
|
for (auto i = ++lnit; i < links.end(); i++) {
|
||||||
if (!(*i)->enabled) { continue; }
|
if (!(*i)->enabled) { continue; }
|
||||||
nextLink = *i;
|
nextLink = *i;
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (nextLink) {
|
if (nextLink) {
|
||||||
|
@ -0,0 +1,4 @@
|
|||||||
|
---
|
||||||
|
DisableFormat: true
|
||||||
|
...
|
||||||
|
|
@ -9,20 +9,6 @@ file(GLOB_RECURSE ALL_SOURCE_FILES
|
|||||||
src/*.cpp src/*.h src/*.c
|
src/*.cpp src/*.h src/*.c
|
||||||
)
|
)
|
||||||
|
|
||||||
# Set CLANG_FORMAT_SUFFIX if you are using custom clang-format, e.g. clang-format-5.0
|
|
||||||
find_program(CLANG_FORMAT_CMD clang-format${CLANG_FORMAT_SUFFIX})
|
|
||||||
|
|
||||||
if (CLANG_FORMAT_CMD)
|
|
||||||
add_custom_target(
|
|
||||||
clangformat
|
|
||||||
COMMAND ${CLANG_FORMAT_CMD}
|
|
||||||
-i -style=file -fallback-style=none
|
|
||||||
${ALL_SOURCE_FILES}
|
|
||||||
DEPENDS
|
|
||||||
${ALL_SOURCE_FILES}
|
|
||||||
)
|
|
||||||
endif(CLANG_FORMAT_CMD)
|
|
||||||
|
|
||||||
# add subdirs
|
# add subdirs
|
||||||
|
|
||||||
add_subdirectory(src)
|
add_subdirectory(src)
|
@ -118,8 +118,4 @@ endif (NOT ${ENABLE_IO_THREAD})
|
|||||||
if (${BUILD_SHARED_LIBS})
|
if (${BUILD_SHARED_LIBS})
|
||||||
target_compile_definitions(discord-rpc PUBLIC -DDISCORD_DYNAMIC_LIB)
|
target_compile_definitions(discord-rpc PUBLIC -DDISCORD_DYNAMIC_LIB)
|
||||||
target_compile_definitions(discord-rpc PRIVATE -DDISCORD_BUILDING_SDK)
|
target_compile_definitions(discord-rpc PRIVATE -DDISCORD_BUILDING_SDK)
|
||||||
endif(${BUILD_SHARED_LIBS})
|
endif(${BUILD_SHARED_LIBS})
|
||||||
|
|
||||||
if (CLANG_FORMAT_CMD)
|
|
||||||
add_dependencies(discord-rpc clangformat)
|
|
||||||
endif(CLANG_FORMAT_CMD)
|
|
Loading…
Reference in New Issue
Block a user