From 5a257ae0ceaa1ccd97a66f092dc7fce272802390 Mon Sep 17 00:00:00 2001 From: Xiretza Date: Sat, 24 Apr 2021 14:31:14 +0200 Subject: [PATCH] cmake: use message(WARNING) when dependencies are missing --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 07d91b5..3b67be4 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -45,7 +45,7 @@ if (PNG_FOUND AND LIBSNDFILE_FOUND) endif() endif() else() - MESSAGE(STATUS "WARNING: Only building apt library, as not all of the required libraries were found for aptdec.") + MESSAGE(WARNING "Only building apt library, as not all of the required libraries were found for aptdec.") endif() if (MSVC)