rbutil: Rephrase optional component "not found" messages

Prevents builder from falsely failing builds and their builders.

Change-Id: I44df41416ef41401248132114ee586abde05d93e
This commit is contained in:
Solomon Peachy 2026-07-09 22:36:50 -04:00
parent 814979d49b
commit 8157759b7e

View file

@ -56,12 +56,12 @@ message("-- Found Qt${QT_VERSION_MAJOR}: ${Qt${QT_VERSION_MAJOR}_DIR}")
if (TARGET Qt${QT_VERSION_MAJOR}::Multimedia)
message("-- Found Qt::Multimedia")
else()
message("-- QT::Multimedia not found, TTS preview not available")
message("-- Could not find QT::Multimedia, TTS preview not available")
endif()
if (TARGET Qt${QT_VERSION_MAJOR}::TextToSpeech)
message("-- Found Qt::TextToSpeech")
else()
message("-- QT::TextToSpeech not found, Qt TTS not available")
message("-- Could not find QT::TextToSpeech, Qt TTS not available")
endif()
add_compile_definitions(QT_NO_USE_NODISCARD_FILE_OPEN)
@ -350,7 +350,7 @@ target_include_directories(telechips PUBLIC ${CMAKE_CURRENT_LIST_DIR}/../tools)
find_library(LIBBZ2 bz2)
if(${LIBBZ2} STREQUAL "LIBBZ2-NOTFOUND")
message("-- bz2 not found, building our own")
message("-- Could not find system libbz2, building our own")
add_library(bz2
bzip2/blocksort.c
bzip2/bzlib.c