From 0d3c0cfc29a6e8ee52b3b40031de2bf7f1cb87eb Mon Sep 17 00:00:00 2001 From: Reinhold Gschweicher Date: Fri, 27 Mar 2026 20:33:29 +0100 Subject: [PATCH] cmake: print status message with found SDL2 version Sometimes it is nice to have the info which SDL2 version was found/is in use. --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index ac0182b..316090b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -114,6 +114,7 @@ target_include_directories(sim-base PUBLIC "lv_drivers") target_include_directories(sim-base PUBLIC "${InfiniTime_DIR}/src") # InfiniTime drivers, components and all find_package(SDL2 REQUIRED) +message(STATUS "Found SDL2 version ${SDL2_VERSION}") target_link_libraries(sim-base PUBLIC SDL2::SDL2) set(MONITOR_ZOOM 1 CACHE STRING "Scale simulator window by this factor")