From a786257320508b4c951385720852b16373e1266a Mon Sep 17 00:00:00 2001 From: Jorrit Wronski Date: Wed, 28 Nov 2018 22:06:05 +0100 Subject: [PATCH] Formatted the MSVC<2015 warning properly --- CMakeLists.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index d9ac931..a798571 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,11 +32,7 @@ if (MSVC) endif (SQLITECPP_BUILD_TESTS) # Handle the (partly supported) MSVC versions prior to 2015 if (MSVC_TOOLSET_VERSION LESS 140) - message(WARNING "--------------- MSVC < 2015 detected ---------------") - message(WARNING "Visual Studio prior to 2015 is not fully supported." ) - message(WARNING "BLOB storage seems to be corrupted for the built-in" ) - message(WARNING "SQLite3 implementation." ) - message(WARNING "----------------------------------------------------") + message(WARNING " MSVC < 2015 detected: Visual Studio prior to 2015 is not fully supported. BLOB storage seems to be corrupted.") endif (MSVC_TOOLSET_VERSION LESS 140) else (MSVC) set(CPPLINT_ARG_OUTPUT "--output=eclipse")