From 5c10dc3204d00777aebe61187b2a679092983473 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Sat, 14 Sep 2024 01:31:15 +0200 Subject: [PATCH] build: Print message when enabling non-default imgui libraries --- cmake/build_helpers.cmake | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmake/build_helpers.cmake b/cmake/build_helpers.cmake index e09f832..4828e08 100644 --- a/cmake/build_helpers.cmake +++ b/cmake/build_helpers.cmake @@ -437,6 +437,10 @@ macro(addBundledLibraries) endif() endif() endif() + + foreach (library IN LISTS FENESTRA_BUNDLED_IMGUI_LIBRARIES) + message(STATUS "Enabling ImGui library '${library}'") + endforeach() endmacro() function(enableUnityBuild TARGET)