diff --git a/utils/CMakeLists.txt b/utils/CMakeLists.txt index 1032478af2..fc771a093d 100644 --- a/utils/CMakeLists.txt +++ b/utils/CMakeLists.txt @@ -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