mirror of
https://github.com/Rockbox/rockbox.git
synced 2026-07-10 13:29:52 -04:00
rbutil: Rephrase optional component "not found" messages
Prevents builder from falsely failing builds and their builders. Change-Id: I44df41416ef41401248132114ee586abde05d93e
This commit is contained in:
parent
814979d49b
commit
8157759b7e
1 changed files with 3 additions and 3 deletions
|
|
@ -56,12 +56,12 @@ message("-- Found Qt${QT_VERSION_MAJOR}: ${Qt${QT_VERSION_MAJOR}_DIR}")
|
||||||
if (TARGET Qt${QT_VERSION_MAJOR}::Multimedia)
|
if (TARGET Qt${QT_VERSION_MAJOR}::Multimedia)
|
||||||
message("-- Found Qt::Multimedia")
|
message("-- Found Qt::Multimedia")
|
||||||
else()
|
else()
|
||||||
message("-- QT::Multimedia not found, TTS preview not available")
|
message("-- Could not find QT::Multimedia, TTS preview not available")
|
||||||
endif()
|
endif()
|
||||||
if (TARGET Qt${QT_VERSION_MAJOR}::TextToSpeech)
|
if (TARGET Qt${QT_VERSION_MAJOR}::TextToSpeech)
|
||||||
message("-- Found Qt::TextToSpeech")
|
message("-- Found Qt::TextToSpeech")
|
||||||
else()
|
else()
|
||||||
message("-- QT::TextToSpeech not found, Qt TTS not available")
|
message("-- Could not find QT::TextToSpeech, Qt TTS not available")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
add_compile_definitions(QT_NO_USE_NODISCARD_FILE_OPEN)
|
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)
|
find_library(LIBBZ2 bz2)
|
||||||
if(${LIBBZ2} STREQUAL "LIBBZ2-NOTFOUND")
|
if(${LIBBZ2} STREQUAL "LIBBZ2-NOTFOUND")
|
||||||
message("-- bz2 not found, building our own")
|
message("-- Could not find system libbz2, building our own")
|
||||||
add_library(bz2
|
add_library(bz2
|
||||||
bzip2/blocksort.c
|
bzip2/blocksort.c
|
||||||
bzip2/bzlib.c
|
bzip2/bzlib.c
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue