From db81bf02a7f9b00103122edce2a0c1b3f3f1637e Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Mon, 12 Aug 2019 20:29:43 +0200 Subject: [PATCH] CMake: Use SEND_ERROR to report more errors at once --- expat/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/expat/CMakeLists.txt b/expat/CMakeLists.txt index 5e15bf97..56c68b22 100644 --- a/expat/CMakeLists.txt +++ b/expat/CMakeLists.txt @@ -65,7 +65,7 @@ endif() if(USE_libbsd) find_library(LIB_BSD NAMES bsd) if(NOT LIB_BSD) - message(FATAL_ERROR "USE_libbsd option is enabled, but libbsd was not found") + message(SEND_ERROR "USE_libbsd option is enabled, but libbsd was not found") else() set(HAVE_LIBBSD TRUE) endif()