From 55678a8d03badacb25fd30f605799ee77a57502b Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 25 May 2021 15:17:37 +0200 Subject: [PATCH] Output message if bundled version of Termcolor is used. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ddb29eb..9756e87 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,6 +30,7 @@ find_package(fmt 4 REQUIRED CONFIG) find_package(termcolor CONFIG) if(NOT termcolor_FOUND) if(FALLBACK_BUNDLED) + message(VERBOSE "Using bundled version of Termcolor.") add_subdirectory(dist/termcolor EXCLUDE_FROM_ALL) else() message(FATAL_ERROR "Termcolor was not found.")