From cebf7ea072e4e101695d011afcf77ec21aacad81 Mon Sep 17 00:00:00 2001 From: John Wellbelove Date: Sun, 16 Aug 2020 15:12:30 +0100 Subject: [PATCH] Github actions for MSVC --- test/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 1cbd99a0..21fa6000 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -8,6 +8,8 @@ option(NO_STL "No STL" OFF) if (NO_STL) message(STATUS "Compiling for No STL") add_definitions(-DETL_NO_STL) +else() + message(STATUS "Compiling for STL") endif() if(NOT UnitTest++_FOUND)