From e4ab578b250a76d9820b16c1e66d82ecdf40f255 Mon Sep 17 00:00:00 2001 From: ts826848 Date: Mon, 20 Nov 2023 05:32:35 +0000 Subject: [PATCH] Tweak error shown if support is not found Suggested by @COM8 Co-authored-by: Fabian Sauter --- include/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/CMakeLists.txt b/include/CMakeLists.txt index 6f88d504a..09ed5f271 100644 --- a/include/CMakeLists.txt +++ b/include/CMakeLists.txt @@ -92,7 +92,7 @@ else() if(CXXFS_SUPPORTED) target_link_libraries(cpr PUBLIC c++fs) else() - message(FATAL_ERROR " support could not be found") + message(FATAL_ERROR "Your compiler does not support the `` include or cpr is unable to determine the proper compiler flags for it.") endif() endif() endif()