From 7ffef8db92164fbfb5e2a9fd8848c7455f4c8be4 Mon Sep 17 00:00:00 2001 From: Lars Toenning Date: Fri, 26 Jun 2026 22:20:37 +0200 Subject: [PATCH] build: Print build type --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index db8641c7f..29179bb06 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -87,6 +87,7 @@ if(NOT CMAKE_BUILD_TYPE) message(STATUS "CMAKE_BUILD_TYPE not defined. Falling back to Debug") set(CMAKE_BUILD_TYPE Debug) endif() +message(STATUS "BUILD TYPE: ${CMAKE_BUILD_TYPE}") if(SWIFT_MINIFY_DEBUG_SYMBOLS) if(MSVC)