diff options
author | Michele Calgaro <[email protected]> | 2024-10-08 16:48:44 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-10-08 18:08:06 +0900 |
commit | 8de97496a707943dc39b4ca625e475746b776ba9 (patch) | |
tree | 7ee6a30a59aa0422424ba4d6b20ba473a91b6836 | |
parent | 0634e50e276f9fb2598c8701ff3c9262a4106ea0 (diff) | |
download | arts-8de97496a707943dc39b4ca625e475746b776ba9.tar.gz arts-8de97496a707943dc39b4ca625e475746b776ba9.zip |
Improve fatal error messages
Signed-off-by: Michele Calgaro <[email protected]>
-rw-r--r-- | flow/gsl/ConfigureChecks.cmake | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/flow/gsl/ConfigureChecks.cmake b/flow/gsl/ConfigureChecks.cmake index 5e2c623..1bffd67 100644 --- a/flow/gsl/ConfigureChecks.cmake +++ b/flow/gsl/ConfigureChecks.cmake @@ -42,13 +42,13 @@ if( WITH_VORBIS ) else( VORBISFILE_FOUND ) - tde_message_fatal( "Ogg/Vorbis support are requested, but `libvorbisfile` not found" ) + tde_message_fatal( "Ogg/Vorbis was requested but `libvorbisfile` was not found on your system." ) endif( VORBISFILE_FOUND ) else( VORBIS_FOUND ) - tde_message_fatal( "Ogg/Vorbis support are requested, but `libvorbis` but found" ) + tde_message_fatal( "Ogg/Vorbis was requested but `libvorbis` was not found on your system." ) endif( VORBIS_FOUND ) @@ -74,7 +74,7 @@ if( WITH_MAD ) find_library( MAD_LIBRARIES NAMES mad ) find_path( MAD_INCLUDE_DIRS mad.h ) if( NOT MAD_LIBRARIES ) - tde_message_fatal( "MAD support is requested, but `libmad` not found" ) + tde_message_fatal( "MAD support was requested but `libmad` was not found on your system." ) endif( NOT MAD_LIBRARIES ) endif( MAD_FOUND ) |