From 5a0dbe9a5ab63d4535ef0c4484098077412562b9 Mon Sep 17 00:00:00 2001 From: illyum <90023277+itzilly@users.noreply.github.com> Date: Fri, 16 Aug 2024 03:03:10 -0600 Subject: [PATCH] (Chore): Set fetch content quiet flag off --- CMakeLists.txt | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 3d67419..4a45cd1 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,6 +8,12 @@ set(CMAKE_CXX_STANDARD_REQUIRED ON) # nvim/fleet users (ONLY WORKS WITH MINGW/NINJA BUILDERS) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) +# Need this to make FETCHCONTENT_QUIET off +if(POLICY CMP0077) + cmake_policy(SET CMP0077 NEW) +endif() +set(FETCHCONTENT_QUIET OFF) + include(FetchContent) # Dependencies ## - Raylib