A modern, network-enabled music player platform built on Rockbox technology. rockboxd.tsiry-sandratraina.com
rust deno navidrome airplay libadwaita zig mpris snapcast mpd rockbox audio subsonic
2

Configure Feed

Select the types of activity you want to include in your feed.

rbutil: Rephrase optional component "not found" messages

Prevents builder from falsely failing builds and their builders.

Change-Id: I44df41416ef41401248132114ee586abde05d93e

+3 -3
+3 -3
utils/CMakeLists.txt
··· 56 56 if (TARGET Qt${QT_VERSION_MAJOR}::Multimedia) 57 57 message("-- Found Qt::Multimedia") 58 58 else() 59 - message("-- QT::Multimedia not found, TTS preview not available") 59 + message("-- Could not find QT::Multimedia, TTS preview not available") 60 60 endif() 61 61 if (TARGET Qt${QT_VERSION_MAJOR}::TextToSpeech) 62 62 message("-- Found Qt::TextToSpeech") 63 63 else() 64 - message("-- QT::TextToSpeech not found, Qt TTS not available") 64 + message("-- Could not find QT::TextToSpeech, Qt TTS not available") 65 65 endif() 66 66 67 67 add_compile_definitions(QT_NO_USE_NODISCARD_FILE_OPEN) ··· 350 350 351 351 find_library(LIBBZ2 bz2) 352 352 if(${LIBBZ2} STREQUAL "LIBBZ2-NOTFOUND") 353 - message("-- bz2 not found, building our own") 353 + message("-- Could not find system libbz2, building our own") 354 354 add_library(bz2 355 355 bzip2/blocksort.c 356 356 bzip2/bzlib.c