From 27e728c4bee0fe615ceb7450017be9f112a3b421 Mon Sep 17 00:00:00 2001 From: Bastian Dehn Date: Wed, 13 May 2026 11:45:03 +0200 Subject: [PATCH] add print build type --- CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/CMakeLists.txt b/CMakeLists.txt index 24de1c7..4c05e09 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,6 +7,7 @@ if("${CMAKE_BUILD_TYPE}" STREQUAL "Release") else() set(CMAKE_C_FLAGS "-std=c99 -g -Wall -Wextra -pedantic -fsanitize=address") endif() +message(STATUS "CMAKE_BUILD_TYPE: ${CMAKE_BUILD_TYPE}") message(STATUS "CMAKE_C_FLAGS: ${CMAKE_C_FLAGS}") add_subdirectory(src) -- 2.47.3