From 382bd71676e1b73e73b6515e89e99be7617cd6d0 Mon Sep 17 00:00:00 2001 From: tastytea Date: Tue, 25 May 2021 11:42:57 +0200 Subject: [PATCH] Don't install files from bundles termcolor. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 73d38cd..3881e1e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,7 +30,7 @@ find_package(fmt 4 REQUIRED CONFIG) find_package(termcolor CONFIG) if(NOT termcolor_FOUND) if(FALLBACK_BUNDLED) - add_subdirectory(dist/termcolor) + add_subdirectory(dist/termcolor EXCLUDE_FROM_ALL) else() message(FATAL_ERROR "Termcolor was not found.") endif()